- 浏览: 278301 次
- 性别:
- 来自: 杭州
文章分类
最新评论
-
smilea001:
确定可以吗,为什么我的是Exception in thread ...
JAVA发送向指定URL发送HTTP请求 -
liyueling:
有用
JAVA中获取当前运行的类名,方法名,行数 -
to_zoe_yang:
不错~正在用呢
Snap ConnectionPool简介(图)- - -
wait10000y:
js大小写敏感,好不好?
javascript日期比较 -
xiarilian12:
哥按照这个方法已经装上了
哥的ecelipse是3.5
Findbugs插件使用图文指南
* 1,在HTTP的WEB应用中, 应用客户端和服务器之间的状态是通过Session来维持的, 而Session的本质就是Cookie,
* 简单的讲,当浏览器向服务器发送Http请求的时候, HTTP服务器会产生一个SessionID,这个SessionID就唯一的标识了一个客户端到服务器的请求会话过程.
* 就如同一次会议开始时,主办方给每位到场的嘉宾一个临时的编号胸牌一样, 可以通过这个编号记录每个嘉宾(客户端)的活动(请求状态).
* 为了保持这个状态, 当服务端向客户端回应的时候,会附带Cookie信息,当然,Cookie里面就包含了SessionID
* 客户端在执行一系列操作时向服务端发送请求时,也会带上这个SessionID, 一般来说,Session也是一个URL QueryParameter ,就是说,session可以以Key-Value的形式通过URL传递
* 比如,http://www.51etest.com/dede/login.php?PHPSESSIONID=7dg3dsf19SDf73wqc32fdsf
* 一般而言,浏览器会自动把此Session信息放入Header报文体中进行传递.
* 如果浏览器不支持Cookie,那么,浏览器会自动把SessionID附加到URL中去.
*
* 2,在这个例子中,以登陆这个功能点进行讲解.
* 首先,我们登陆的页面是http://www.51etest.com/dede, 我们第一次访问这个页面后,可以从服务器过来的Http Response报文中的Header中找出服务器与浏览器向关联的数据 -- Cookie,
* 而且Session的值也在Cookie中. 于是,我们可以通过分析Set-Cookie这个Header中的参数的值,找到Seesion的Key-Value段.
* 然后,我们再向服务器发送请求,请求URL为:post@@http://www.51etest.com/dede/login.php@@userid=admin&pwd=tidus2005&gotopage=/dede/&dopost=login
* 服务器验证登陆成功了, 并且在此次会话变量中增加了我们登陆成功的标识.
*
* 3,增加一个广告定义
* 增加一个广告定义其实就是一个添加数据的过程,无非是我们把我们要添加的数据通过参数的形式告诉指定url页面,页面获取后添加到数据库去而已.
* 此url地址为:
* post@@http://www.51etest.com/dede/ad_add.php@@dopost=save&tagname=test&typeid=0&adname=test&starttime=2008-05-29
* 因为这个页面会先判断我是否登陆
* 而判断的依据,前面讲了,就是根据我请求时的SessionID找到指定的Session数据区中是否存在我的登陆信息,
* 所以我当然要把访问登陆页面时获取的SessionID原封不动的再发回去
* 相当于对服务器说,这是我刚刚来时,你发我的临时身份证,我现在可以形势我的权利。
*
* 这就是整个Java后台登陆网站,然后添加数据的过程。
package cn.javadr.product; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URL; import java.net.URLConnection; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.Map.Entry; /** * HttpClient * * @author Tang Ren email: <a * href="mailto:tangren1206@163.com">tangren1206@163.com</a> * * post@@http://www.51etest.com/dede/login.php@@userid=xxxx&pwd=xxxxxx&gotopage=/dede/&dopost=login * * post@@http://www.51etest.com/dede/ad_add.php@@dopost=save&tagname=test&typeid=0&adname=test&starttime=2008-05-29 * 20:58:25&endtime=2008-06-28 20:58:25×et=0&normbody=test&expbody=test * */ /** * */ public class HttpClient { private static final String USER_AGENT_VALUE = "Mozilla/4.0 (compatible; MSIE 6.0; Windows XP)"; /** * Cmd splitor default is symbol '$$'. */ private static final String HTTP_CLIENT_CMD_SPLITOR = "@@"; /** * Post parameter splitor default is symbol '&'. */ private static final String POST_PARAMETER_SPLITOR = "&"; private static final String POST_PARAMETER_KV_SPLITOR = "="; private String cookie = null; private Map cookieMap = new HashMap(); public static void main(String[] args) { HttpClient client = new HttpClient(); } public HttpClient() { // Input http request url BufferedReader consleReader = new BufferedReader(new InputStreamReader( System.in)); String httpResponse = null; String url = null; String cmd = null; String method = null; try { while (true) { cmd = consleReader.readLine(); if (cmd.indexOf(HTTP_CLIENT_CMD_SPLITOR) == -1) continue; method = cmd.split(HTTP_CLIENT_CMD_SPLITOR)[0]; url = cmd.split(HTTP_CLIENT_CMD_SPLITOR)[1]; if (method.toUpperCase().equals("GET")) { httpResponse = this.getMethod(url, true); } else if (method.toUpperCase().equals("POST")) { Map parameters = this.parsePostParameters(cmd .split(HTTP_CLIENT_CMD_SPLITOR)[2]); httpResponse = this.postMethod(url, parameters, true); } System.out.println(httpResponse); } } catch (IOException e) { e.printStackTrace(); } finally { try { consleReader.close(); } catch (IOException e) { e.printStackTrace(); } } } /** * Request specifid url with 'GET' method. And return HTTP response content. * * @param url * @return */ private String getMethod(String url, boolean keepCookie) { if (url == null || url.length() == 0) { return "Requst url could not be null or empty."; } StringBuffer result = new StringBuffer(); try { HttpURLConnection httpURLConnection = this.getHttpURLConnection( url, keepCookie); // Set request properties. this.settingHttpRequestHeader(httpURLConnection); httpURLConnection.setRequestMethod("GET"); // Getting or setting cookie this.gettingOrSettingCookie(httpURLConnection, keepCookie); InputStream httpInputStream = httpURLConnection.getInputStream(); BufferedReader httpBufferedReader = new BufferedReader( new InputStreamReader(httpInputStream, "GBK")); result.append(this.readBufferedContent(httpBufferedReader)); // Connect to host. httpURLConnection.connect(); } catch (IOException e) { e.printStackTrace(); return "getHttpURLConnection failed."; } return result.toString(); } public String postMethod(String url, Map parameters, boolean keepCookie) { StringBuffer httpResponse = new StringBuffer(); HttpURLConnection httpURLConnection = null; OutputStream httpOutputStream = null; try { httpURLConnection = this.getHttpURLConnection(url, keepCookie); // Set request properties. this.settingHttpRequestHeader(httpURLConnection); // Set request method with 'POST' httpURLConnection.setRequestMethod("POST"); // Set connection output is true. httpURLConnection.setDoOutput(true); // Getting or setting cookie this.gettingOrSettingCookie(httpURLConnection, keepCookie); // Get Http output stream httpOutputStream = httpURLConnection.getOutputStream(); // Build post parameters string StringBuffer postParams = new StringBuffer(); int index = 0; for (Iterator<Entry> iter = parameters.entrySet().iterator(); iter .hasNext(); index++) { Entry<String, String> entry = iter.next(); postParams.append(index != 0 ? "&" : ""); postParams.append(entry.getKey()); postParams.append("="); postParams.append(entry.getValue()); } httpOutputStream.write(postParams.toString().getBytes()); BufferedReader httpBufferedReader = new BufferedReader( new InputStreamReader(httpURLConnection.getInputStream())); httpResponse.append(this.readBufferedContent(httpBufferedReader)); } catch (IOException e) { e.printStackTrace(); return null; } finally { try { httpOutputStream.close(); } catch (IOException e) { e.printStackTrace(); } } return httpResponse.toString(); } /** * Setting HTTP request header properties * * @param httpURLConnection */ private void settingHttpRequestHeader(HttpURLConnection httpURLConnection) { if (httpURLConnection == null) return; httpURLConnection.setRequestProperty("User-Agent", USER_AGENT_VALUE); // TODO setting some other properties here . . . } /** * Get HttpURLConnection by specified url string. * * @param url * @return * @throws IOException */ private HttpURLConnection getHttpURLConnection(String url, boolean keepCookie) throws IOException { URL urlObj = new URL(url); URLConnection urlConnection = urlObj.openConnection(); if (urlConnection instanceof HttpURLConnection) return (HttpURLConnection) urlConnection; throw new MalformedURLException(); } /** * Read bufferedReader buffered content. * * @param bufferedReader * @return */ private String readBufferedContent(BufferedReader bufferedReader) { if (bufferedReader == null) return null; StringBuffer result = new StringBuffer(); String line = null; try { while ((line = bufferedReader.readLine()) != null) { result.append(line); } } catch (IOException e) { e.printStackTrace(); return null; } return result.toString(); } /** * Parse and create parameter map with parameter string * * @param parameterString * @return */ private Map parsePostParameters(String parameterString) { if (parameterString == null || parameterString.length() == 0) return null; Map result = new HashMap<String, String>(); // only one parameter key-value pair if (parameterString.indexOf(POST_PARAMETER_SPLITOR) == -1) { if (parameterString.indexOf(POST_PARAMETER_KV_SPLITOR) != -1) result.put(parameterString.split(POST_PARAMETER_KV_SPLITOR)[0], parameterString.split(POST_PARAMETER_KV_SPLITOR)[1]); } else { String[] keyValues = parameterString.split(POST_PARAMETER_SPLITOR); for (int i = 0; i < keyValues.length; i++) { String keyValue = keyValues[i]; result.put(keyValue.split(POST_PARAMETER_KV_SPLITOR)[0], keyValue.split(POST_PARAMETER_KV_SPLITOR)[1]); } } return result; } /** * Get or set cookie. * * @param httpURLConnection * @param keepCookie */ private void gettingOrSettingCookie(HttpURLConnection httpURLConnection, boolean keepCookie) { // Getting or setting cookie. if (cookie == null || cookie.length() == 0) { String setCookie = httpURLConnection.getHeaderField("Set-Cookie"); cookie = setCookie.substring(0, setCookie.indexOf(";")); } else if (keepCookie) { httpURLConnection.setRequestProperty("Cookie", cookie); } } }
本人水平有限,大家如果有任何问题,欢迎和我讨论.
联系方式Email: tangren1206@163.com QQ: 580126
发表评论
-
Maven微内核机制介绍及pom设计规范讨论
2009-11-10 16:47 2440maven分享 唐韧 ren.tangr@alibab ... -
Lucene 2小时学习笔记
2009-10-14 20:38 12111,创建index步骤 1.1 Inde ... -
Findbugs插件使用图文指南
2009-09-04 16:21 22902它是干嘛的? findbugs是一个开源的eclipse ... -
JAVA中获取当前运行的类名,方法名,行数
2009-09-02 11:48 12672public static String getTraceIn ... -
IBatis 配置详解
2008-08-26 00:29 3723ibatis基础代码包括: 1. ibatis实例配置 一 ... -
Quartz实现定时功能,Cron表达式调度等等
2008-05-23 15:17 2826Quartz是一个完全由java编写的开源作业调度框架,具体的 ... -
Java日期转换SimpleDateFormat格式大全
2008-05-13 16:33 637524小时制时间显示: public class D ... -
log4j的例子和教程
2007-08-03 14:42 1246log4j的例子和教程 分类:Java基础相关 csdn上有 ... -
java,jsp,探察运行环境
2007-08-06 10:13 1066<html><head><tit ... -
简单的ant入门例子
2007-08-15 03:46 1254公司的BOSS系统架构很复杂,模块化非常明显,没个子系统就是一 ... -
JFreeChart学习笔记(创建JSP输出)
2007-08-21 10:19 1924JFreeChart学习笔记 <script typ ... -
JfreeChart作好的折线+曲线图!
2007-08-21 10:32 3670折线图 line.jsp XY曲线图 ...
相关推荐
以上就是使用Java后台请求HTTP并保持Session的基本步骤。在实际应用中,可能需要考虑更多细节,比如异常处理、超时设置、重试策略等。在处理多个请求时,可能需要管理多个连接,这时可以使用线程池或者HTTP客户端库...
以上就是Java后台通过HTTP请求获取登录权限网站数据的基本步骤,包括GET和POST请求的实现以及Session的管理和保持。在实际应用中,可能还需要处理重定向、超时、错误处理等复杂情况,但这些基础内容已经为你构建了...
Java Web后端开发是互联网应用开发中的重要环节,Servlet技术是Java EE标准中用于构建动态网站的核心组件之一。本篇文章将深入探讨如何使用Servlet来实现网站后台的功能。 Servlet是Java编程语言中的一个接口,它...
开发者可以通过JSP的内置对象如request、response、session等来处理HTTP请求,以及通过EL(Expression Language)和JSTL(JavaServer Pages Standard Tag Library)简化页面逻辑。 其次,`Servlet`是Java EE中的...
在这个项目中,前端可能通过一个JSP(JavaServer Pages)页面,如`showReport.jsp`,来展示报表并发起请求到后台的Servlet来获取或处理出库数据。Servlet是Java Web开发中的一个重要组件,它负责处理HTTP请求,执行...
2. ModelAndView对象:Spring MVC中的ModelAndView对象允许开发者将数据添加到模型中,然后在视图中访问。例如: ```java @RequestMapping("/show") public ModelAndView showUser() { ModelAndView modelAndView ...
通过上述知识点,你可以开始构建一个简单的基于Java的JSP表单程序,从接收用户输入、验证数据到与数据库交互,实现一个完整的Web应用程序。记得在实践中不断学习和优化,提升你的Java Web开发技能。
本文将详细介绍如何通过微信小程序调用微信登录功能获取openid,并利用Java作为服务端进行处理的步骤。 1. **调用微信登录获取code** 微信小程序提供了一个`wx.login`接口,用于获取用户的临时登录凭证——code。...
例如,当用户点击“添加到购物车”按钮时,会发送一个POST请求到服务器,Servlet接收到这个请求后,解析请求参数,获取商品ID,然后从数据库中查询商品信息并添加到Session中。 3. **数据库交互**:为了获取商品...
12. Ajax总结:Ajax(异步JavaScript和XML)技术通过在后台与服务器进行少量数据交换,实现了网页的部分更新,提升了用户体验。 13. JSP九大隐式对象中四个作用域的大小与作用范围:page, request, session, ...
开发者可以使用JSP内置对象(如request、response、session等)来处理HTTP请求,获取或设置请求参数,以及与后台JavaBean或Servlet进行交互。 【LoginServlet】 在给定的压缩包文件中,"LoginServlet"很可能是一个...
【Java网上购物系统】是一个基于JSP(JavaServer Pages)技术构建的Web应用程序,主要用于模拟实现电子商务中的在线购物功能。JSP是Java EE平台的一部分,它允许开发者在HTML页面中嵌入Java代码,以实现动态网页的...
具体实现过程中,当学生提交选课请求时,JSP页面通过POST方法将请求发送到JAVA后台,后台通过JDBC连接数据库,查询学生是否满足选课条件,如是否已达到最大选课数、课程是否已满员等。如果符合条件,就更新选课关系...
page 作用域表示当前 JSP 页面,request 作用域表示当前请求,session 作用域表示当前会话,application 作用域表示当前应用程序。 List,Set,Collection,Collections List、Set、Collection 和 Collections 都是 ...
13. Spring MVC 中的默认参数类型:HttpServletRequest 通过 request 对象获取请求信息,HttpServletResponse 通过 response 处理响应信息,HttpSession 通过 session 对象得到 session 中存放的对象,Model/...
用户填写后通过HTTP POST请求提交到服务器,服务器端的JSP或Servlet需要解析请求参数,将数据保存到数据库。 6. HTML与CSS: 界面展示部分,HTML用于构建网页结构,CSS则负责样式设计,使留言板具有良好的用户体验...
2. B/S结构的处理过程:用户通过浏览器发送HTTP请求到服务器,服务器接收到请求后解析请求内容,调用相应的后台服务处理,然后将处理结果以HTML或其他格式的响应返回给客户端浏览器,浏览器再解析并展示给用户。...
3. 使用Java代码传值:使用Java代码来传递数据,例如:servlet只能接收到session.setAttribute("testSession","Hello session")的内容,而不能接收到request的内容。 总结 getParameter()方法传递的是字符串,一般...
- 数据被发送到服务器,通常是通过HTTP POST请求。 - 服务器接收到请求后,验证用户名和密码的正确性。 - 如果验证成功,服务器会创建一个session(会话),并可能设置session属性以标识已登录的用户。 - 验证失败则...