随笔-179  评论-666  文章-29  trackbacks-0

httpclient 是我最近想研究的东西,以前想过的一些应用没能有很好的实现,发现这个开源项目之后就有点眉目了,令人头痛的cookie问题还是有办法解决滴。在网上整理了一些东西,写得很好,寄放在这里。

http 协议可能是现在 internet 上使用得最多、最重要的协议了,越来越多的 java 应用程序需要直接通过 http 协议来访问网络资源。虽然在 jdk 的 java.net 包中已经提供了访问 http 协议的基本功能,但是对于大部分应用程序来说,jdk 库本身提供的功能还不够丰富和灵活。httpclient 是 apache jakarta common 下的子项目,用来提供高效的、最新的、功能丰富的支持 http 协议的客户端编程工具包,并且它支持 http 协议最新的版本和建议。httpclient 已经应用在很多的项目中,比如 apache jakarta 上很著名的另外两个开源项目 cactus 和 htmlunit 都使用了 httpclient,更多使用 httpclient 的应用可以参见。httpclient 项目非常活跃,使用的人还是非常多的。目前 httpclient 版本是在 2005.10.11 发布的 3.0 rc4 。

------------------------------------

应用httpclient来对付各种顽固的web服务器
转自:

一般的情况下我们都是使用ie或者navigator浏览器来访问一个web服务器,用来浏览页面查看信息或者提交一些数据等等。所访问的这些页面有的仅仅是一些普通的页面,有的需要用户登录后方可使用,或者需要认证以及是一些通过加密方式传输,例如https。目前我们使用的浏览器处理这些情况都不会构成问题。不过你可能在某些时候需要通过程序来访问这样的一些页面,比如从别人的网页中“偷”一些数据;利用某些站点提供的页面来完成某种功能,例如说我们想知道某个手机号码的归属地而我们自己又没有这样的数据,因此只好借助其他公司已有的网站来完成这个功能,这个时候我们需要向网页提交手机号码并从返回的页面中解析出我们想要的数据来。如果对方仅仅是一个很简单的页面,那我们的程序会很简单,本文也就没有必要大张旗鼓的在这里浪费口舌。但是考虑到一些服务授权的问题,很多公司提供的页面往往并不是可以通过一个简单的url就可以访问的,而必须经过注册然后登录后方可使用提供服务的页面,这个时候就涉及到cookie问题的处理。我们知道目前流行的动态网页技术例如asp、jsp无不是通过cookie来处理会话信息的。为了使我们的程序能使用别人所提供的服务页面,就要求程序首先登录后再访问服务页面,这过程就需要自行处理cookie,想想当你用java.net.httpurlconnection来完成这些功能时是多么恐怖的事情啊!况且这仅仅是我们所说的顽固的web服务器中的一个很常见的“顽固”!再有如通过http来上传文件呢?不需要头疼,这些问题有了“它”就很容易解决了!

我们不可能列举所有可能的顽固,我们会针对几种最常见的问题进行处理。当然了,正如前面说到的,如果我们自己使用java.net.httpurlconnection来搞定这些问题是很恐怖的事情,因此在开始之前我们先要介绍一下一个开放源码的项目,这个项目就是apache开源组织中的httpclient,它隶属于jakarta的commons项目,目前的版本是2.0rc2。commons下本来已经有一个net的子项目,但是又把httpclient单独提出来,可见http服务器的访问绝非易事。

commons-httpclient项目就是专门设计来简化http客户端与服务器进行各种通讯编程。通过它可以让原来很头疼的事情现在轻松的解决,例如你不再管是http或者https的通讯方式,告诉它你想使用https方式,剩下的事情交给httpclient替你完成。本文会针对我们在编写http客户端程序时经常碰到的几个问题进行分别介绍如何使用httpclient来解决它们,为了让读者更快的熟悉这个项目我们最开始先给出一个简单的例子来读取一个网页的内容,然后循序渐进解决掉前进中的所有问题。

1. 读取网页(http/https)内容

下面是我们给出的一个简单的例子用来访问某个页面

/*
* created on 2003-12-14 by liudong
*/

 

package http.demo;
import java.io.ioexception;
import org.apache.commons.httpclient.*;
import org.apache.commons.httpclient.methods.*;

 

/** 
 *最简单的http客户端,用来演示通过get或者post方式访问某个页面
  *@authorliudong
*/

 

 

public class simpleclient {
public static void main(string[] args) throws ioexception
{
  httpclient client = new httpclient();
      // 设置代理服务器地址和端口      

      //client.gethostconfiguration().setproxy("proxy_host_addr",proxy_port); 
     
// 使用 get 方法 ,如果服务器需要通过 https 连接,那只需要将下面 url 中的 http 换成 https
         httpmethodmethod=newgetmethod("http://java.sun.com");
      //使用post方法
      //httpmethod method = new postmethod("http://java.sun.com");
      
client.executemethod(method);

      
//打印服务器返回的状态
      
system.out.println(method.getstatusline());
      
//打印返回的信息
      
system.out.println(method.getresponsebodyasstring());
      
//释放连接
      
method.releaseconnection();
   
}
}

 

在这个例子中首先创建一个http客户端(httpclient)的实例,然后选择提交的方法是get或者post,最后在httpclient实例上执行提交的方法,最后从所选择的提交方法中读取服务器反馈回来的结果。这就是使用httpclient的基本流程。其实用一行代码也就可以搞定整个请求的过程,非常的简单!


2. 以get或者post方式向网页提交参数

其实前面一个最简单的示例中我们已经介绍了如何使用get或者post方式来请求一个页面,本小节与之不同的是多了提交时设定页面所需的参数,我们知道如果是get的请求方式,那么所有参数都直接放到页面的url后面用问号与页面地址隔开,每个参数用&隔开,例如:,但是当使用post方法时就会稍微有一点点麻烦。本小节的例子演示向如何查询手机号码所在的城市,代码如下:

 

/*
* created on 2003-12-7 by liudong 
*/

 

 

package http.demo;
import java.io.ioexception;
import org.apache.commons.httpclient.*;
import org.apache.commons.httpclient.methods.*;

 

/** 
 *提交参数演示
 *该程序连接到一个用于查询手机号码所属地的页面
 *以便查询号码段1330227所在的省份以及城市
 *@authorliudong
 */

 

 

public class simplehttpclient { 
   public static void main(string[] args) throws ioexception {
      httpclient client = new httpclient();
      client.gethostconfiguration().sethost( "www.imobile.com.cn" , 80, "http" );
      method = getpostmethod();    // 使用 post 方式提交数据 
      client.executemethod(method);   //打印服务器返回的状态 
      system.out.println(method.getstatusline());   //打印结果页面
      stringresponse=newstring(method.getresponsebodyasstring().getbytes("8859_1"));

      //打印返回的信息
      system.out.println(response);
      method.releaseconnection();
   }

 

 

   /** 
    * 使用 get 方式提交数据 
    *@return 
    */

   privatestatichttpmethodgetgetmethod(){
      returnnewgetmethod("/simcard.php?simcard=1330227");
   }

 

 

    /** 
     * 使用 post 方式提交数据 
     *@return 
     */

 

 

    private static httpmethod getpostmethod(){
      postmethod post = new postmethod( "/simcard.php" );
      namevaluepair simcard = new namevaluepair( "simcard" , "1330227" );
      post.setrequestbody( new namevaluepair[] { simcard});
      return post;
   }

}

在上面的例子中页面需要一个参数是simcard,这个参数值为手机号码段,即手机号码的前七位,服务器会返回提交的手机号码对应的省份、城市以及其他详细信息。get的提交方法只需要在url后加入参数信息,而post则需要通过namevaluepair类来设置参数名称和它所对应的值。

3. 处理页面重定向

在jsp/servlet编程中response.sendredirect方法就是使用http协议中的重定向机制。它与jsp中的的区别在于后者是在服务器中实现页面的跳转,也就是说应用容器加载了所要跳转的页面的内容并返回给客户端;而前者是返回一个状态码,这些状态码的可能值见下表,然后客户端读取需要跳转到的页面的url并重新加载新的页面。就是这样一个过程,所以我们编程的时候就要通过httpmethod.getstatuscode()方法判断返回值是否为下表中的某个值来判断是否需要跳转。如果已经确认需要进行页面跳转了,那么可以通过读取http头中的location属性来获取新的地址。

状态码

 

对应 httpservletresponse 的常量

 

详细描述

 

301

 

 

sc_moved_permanently

 

 

页面已经永久移到另外一个新地址

 

302

 

 

sc_moved_temporarily

 

 

页面暂时移动到另外一个新的地址

 

303

 

 

sc_see_other

 

 

客户端请求的地址必须通过另外的 url 来访问

 

307

 

 

sc_temporary_redirect

 

 

sc_moved_temporarily

 

 

下面的代码片段演示如何处理页面的重定向

client.executemethod(post);
system.out.println(post.getstatusline().tostring());
post.releaseconnection();
// 检查是否重定向
int statuscode = post.getstatuscode();
if ((statuscode == httpstatus.sc_moved_temporarily) || (statuscode == httpstatus.sc_moved_permanently) || (statuscode == httpstatus.sc_see_other) || (statuscode == httpstatus.sc_temporary_redirect)) {
// 读取新的 url 地址 
   headerheader=post.getresponseheader("location");
   if (header!=null){
      stringnewuri=header.getvalue();
      if((newuri==null)||(newuri.equals("")))
         newuri="/";
         getmethodredirect=newgetmethod(newuri);
         client.executemethod(redirect);
         system.out.println("redirect:"redirect.getstatusline().tostring());
         redirect.releaseconnection();
   }else 
    system.out.println("invalid redirect");
}

我们可以自行编写两个jsp页面,其中一个页面用response.sendredirect方法重定向到另外一个页面用来测试上面的例子。

4. 模拟输入用户名和口令进行登录

本小节应该说是http客户端编程中最常碰见的问题,很多网站的内容都只是对注册用户可见的,这种情况下就必须要求使用正确的用户名和口令登录成功后,方可浏览到想要的页面。因为http协议是无状态的,也就是连接的有效期只限于当前请求,请求内容结束后连接就关闭了。在这种情况下为了保存用户的登录信息必须使用到cookie机制。以jsp/servlet为例,当浏览器请求一个jsp或者是servlet的页面时,应用服务器会返回一个参数,名为jsessionid(因不同应用服务器而异),值是一个较长的唯一字符串的cookie,这个字符串值也就是当前访问该站点的会话标识。浏览器在每访问该站点的其他页面时候都要带上jsessionid这样的cookie信息,应用服务器根据读取这个会话标识来获取对应的会话信息。

对于需要用户登录的网站,一般在用户登录成功后会将用户资料保存在服务器的会话中,这样当访问到其他的页面时候,应用服务器根据浏览器送上的cookie中读取当前请求对应的会话标识以获得对应的会话信息,然后就可以判断用户资料是否存在于会话信息中,如果存在则允许访问页面,否则跳转到登录页面中要求用户输入帐号和口令进行登录。这就是一般使用jsp开发网站在处理用户登录的比较通用的方法。

这样一来,对于http的客户端来讲,如果要访问一个受保护的页面时就必须模拟浏览器所做的工作,首先就是请求登录页面,然后读取cookie值;再次请求登录页面并加入登录页所需的每个参数;最后就是请求最终所需的页面。当然在除第一次请求外其他的请求都需要附带上cookie信息以便服务器能判断当前请求是否已经通过验证。说了这么多,可是如果你使用httpclient的话,你甚至连一行代码都无需增加,你只需要先传递登录信息执行登录过程,然后直接访问想要的页面,跟访问一个普通的页面没有任何区别,因为类httpclient已经帮你做了所有该做的事情了,太棒了!下面的例子实现了这样一个访问的过程。

/*
* created on 2003-12-7 by liudong
*/

 

package http.demo;
import org.apache.commons.httpclient.*;
import org.apache.commons.httpclient.cookie.*;
import org.apache.commons.httpclient.methods.*;

/**
 * 用来演示登录表单的示例
 * @author liudong
 */

 

public class formlogindemo {
   static final string logon_site = "localhost" ;
   static final int     logon_port = 8080;

   public static void main(string[] args) throws exception{
      httpclient client = new httpclient();
      client.gethostconfiguration().sethost(logon_site, logon_port);

      // 模拟登录页面 login.jsp->main.jsp
      postmethod post = new postmethod( "/main.jsp" );
      namevaluepair name = new namevaluepair( "name" , "ld" );
      namevaluepair pass = new namevaluepair( "password" , "ld" );
      post.setrequestbody( new namevaluepair[]{name,pass});
      int status = client.executemethod(post);
      system.out.println(post.getresponsebodyasstring());
      post.releaseconnection();

      // 查看 cookie 信息
      cookiespec cookiespec = cookiepolicy.getdefaultspec();
      cookie[] cookies = cookiespec.match(logon_site, logon_port, "/" , false , client.getstate().getcookies());
      if (cookies.length == 0) {
         system.out.println( "none" );
      } else {
         for ( int i = 0; i < cookies.length; i ) {
            system.out.println(cookies[i].tostring());
         }
      }

      // 访问所需的页面 main2.jsp 
      getmethodget=newgetmethod("/main2.jsp");
      client.executemethod(get);
      system.out.println(get.getresponsebodyasstring());
      get.releaseconnection();
   }
}

5. 提交xml格式参数

提交xml格式的参数很简单,仅仅是一个提交时候的contenttype问题,下面的例子演示从文件文件中读取xml信息并提交给服务器的过程,该过程可以用来测试web服务。

import java.io.file;
import java.io.fileinputstream;
import org.apache.commons.httpclient.httpclient;
import org.apache.commons.httpclient.methods.entityenclosingmethod;
import org.apache.commons.httpclient.methods.postmethod;

 

 

/** 
 *用来演示提交xml格式数据的例子
*/

 

 

public class postxmlclient {

   public
static void main(string[] args) throws exception {
      file input = new file(“test.xml”);
      postmethod post = new postmethod(“http://localhost:8080/httpclient/xml.jsp”);

      // 设置请求的内容直接从文件中读取
      post.setrequestbody( new fileinputstream(input)); 
      if (input.length() < integer.max_value)
         post.setrequestcontentlength(input.length());
      else
         post.setrequestcontentlength(entityenclosingmethod.content_length_chunked);

      // 指定请求内容的类型
      post.setrequestheader( "content-type" , "text/xml; charset=gbk" );
      httpclient httpclient = new httpclient();
      int result = httpclient.executemethod(post);
      system.out.println( "response status code: " result);
      system.out.println( "response body: " );
      system.out.println(post.getresponsebodyasstring()); 
      post.releaseconnection(); 
   }
}

6. 通过http上传文件

httpclient使用了单独的一个httpmethod子类来处理文件的上传,这个类就是multipartpostmethod,该类已经封装了文件上传的细节,我们要做的仅仅是告诉它我们要上传文件的全路径即可,下面的代码片段演示如何使用这个类。

multipartpostmethod filepost = new multipartpostmethod(targeturl);
filepost.addparameter( "filename" , targetfilepath);
httpclient client = new httpclient();

 

// 由于要上传的文件可能比较大 , 因此在此设置最大的连接超时时间
client.gethttpconnectionmanager(). getparams().setconnectiontimeout(5000);
int status = client.executemethod(filepost);

上面代码中,targetfilepath即为要上传的文件所在的路径。

7. 访问启用认证的页面

我们经常会碰到这样的页面,当访问它的时候会弹出一个浏览器的对话框要求输入用户名和密码后方可,这种用户认证的方式不同于我们在前面介绍的基于表单的用户身份验证。这是http的认证策略,httpclient支持三种认证方式包括:基本、摘要以及ntlm认证。其中基本认证最简单、通用但也最不安全;摘要认证是在http 1.1中加入的认证方式,而ntlm则是微软公司定义的而不是通用的规范,最新版本的ntlm是比摘要认证还要安全的一种方式。

下面例子是从httpclient的cvs服务器中下载的,它简单演示如何访问一个认证保护的页面:

import org.apache.commons.httpclient.httpclient;
import org.apache.commons.httpclient.usernamepasswordcredentials;
import org.apache.commons.httpclient.methods.getmethod;

public class basicauthenticationexample { 

   public basicauthenticationexample() { 
   }

   public static void main(string[] args) throws exception {
      httpclient client = new httpclient();
      client.getstate().setcredentials( "www.verisign.com" , "realm" , new usernamepasswordcredentials( "username" , "password" ) );

      getmethod get = new getmethod( "https://www.verisign.com/products/index.html" );
      get.setdoauthentication( true );
      int status = client.executemethod( get );
      system.out.println(status "\n" get.getresponsebodyasstring());
      get.releaseconnection();
   }
}

8. 多线程模式下使用httpclient

多线程同时访问httpclient,例如同时从一个站点上下载多个文件。对于同一个httpconnection同一个时间只能有一个线程访问,为了保证多线程工作环境下不产生冲突,httpclient使用了一个多线程连接管理器的类:multithreadedhttpconnectionmanager,要使用这个类很简单,只需要在构造httpclient实例的时候传入即可,代码如下:

multithreadedhttpconnectionmanager connectionmanager = new multithreadedhttpconnectionmanager();

 

httpclient client = new httpclient(connectionmanager);

以后尽管访问client实例即可。

参考资料:

httpclient凯发k8网页登录首页:    
关于ntlm是如何工作:  


--------------------------------------------

httpclient入门


jakarta commons httpclient 学习笔记


cookies,ssl,httpclient的多线程处理,http方法


posted on 2007-01-22 09:39 alpha 阅读(143364) 评论(44)     所属分类: java j2ee jsp

评论:
# re: httpclient 学习整理 2007-01-23 14:54 | 坏男孩
这个是不是在ajax里面用的多一些啊  回复  
  
# re: httpclient 学习整理 2007-10-23 08:55 |
真叫高,学习了,。  回复  
  
# re: httpclient 学习整理 2007-11-22 11:33 |
不错,谢谢!  回复  
  
# re: httpclient 学习整理 2008-01-14 14:26 |
不错
  回复  
  
# re: httpclient 学习整理 2008-01-21 11:25 |
很好,很强大。  回复  
  
# re: httpclient 学习整理[未登录] 2008-04-28 10:33 |
确实不错,学习了.  回复  
  
# re: httpclient 学习整理 2008-12-08 10:09 |
呵呵,学习了,真的很不错  回复  
  
# re: httpclient 学习整理 2008-12-11 10:11 |
很不错,很受益  回复  
  
# re: httpclient 学习整理 2009-02-18 17:49 |
佩服,佩服,很强很好,很强大  回复  
  
# re: httpclient 学习整理 2009-07-22 16:02 |
不错,很牛!  回复  
  
# re: httpclient 学习整理[未登录] 2009-10-21 10:16 |
真的不错哎。简明易懂。受教了。  回复  
  
# re: httpclient 学习整理 2009-12-17 15:41 |
tyuytutyutyutyutyu  回复  
  
# re: httpclient 学习整理 2010-07-22 09:29 |
very good!  回复  
  
# re: httpclient 学习整理 2010-07-22 23:59 |
写的不错,受用了,希望楼主继续努力。。  回复  
  
# re: httpclient 学习整理 2011-04-23 09:42 |
请问这个连接 是怎么知道的? 比如获取号码归属地:www.imobile.com.cn这个可以知道,但是这个是怎么来的?/simcard.php  回复  
  
# test 2011-05-09 18:57 |
xxxxxxxxxxxxxxxxx  回复  
  
# re: httpclient 学习整理 2011-05-31 10:16 |
给力。这个总结的太好了。一看就懂  回复  
  
# re: httpclient 学习整理 2011-10-02 09:11 |
非常感谢,刚好要用它,呵呵
顺便转载到我的博客存起以备用,已注明转载
如果有不当之处,望告知我删除,呵呵  回复  
  
# re: httpclient 学习整理[未登录] 2011-11-03 17:34 |
@润
用抓包工具去分析  回复  
  
# re: httpclient 学习整理[未登录] 2011-12-14 09:18 |
不错很好  回复  
  
# re: httpclient 学习整理 2011-12-30 14:49 |
先支持一下在学习  回复  
  
# re: httpclient 学习整理 2012-02-27 15:47 |
您好,文章很不错,我有一个问题,在使用时,我想知道我上传文件信息的大小,我看到multipartentity类中有一个getcontentlength,可是使用该方法后,返回的是-1,是什么原因呢?我确定我的multipartentity中有东西存在的。如能回复不胜感激。  回复  
  
# re: httpclient 学习整理 2012-03-24 12:40 |
多谢,看到这,下午就有事情可以了  回复  
  
# re: httpclient 学习整理[未登录] 2012-05-14 10:11 |
文件放在web-inf下上传过去会有问题的吧?  回复  
  
# re: httpclient 学习整理[未登录] 2012-05-23 18:16 |
学习了,原来楼主还是beyond歌迷。。  回复  
  
# re: httpclient 学习整理 2012-08-10 10:36 |
httpclient client = new httpclient();
。。。  回复  
  
# re: httpclient 学习整理[未登录] 2012-11-28 19:31 |
正在学习,谢过了  回复  
  
# re: httpclient 学习整理[未登录] 2012-11-29 15:59 |
帖子内容很好,知识点很全面,但就是中间有些小瑕疵,有些地方代码有误,eg:
stringresponse=newstring(method.getresponsebodyasstring().getbytes("8859_1"));  回复  
  
# re: httpclient 学习整理 2012-12-28 09:22 |
请问这些代码用导入jar包吗?是哪些包,请提供下载地址好吗?急用  回复  
  
# re: httpclient 学习整理 2013-01-09 17:22 |
@润
当然是你上网搜的了  回复  
  
# re: httpclient 学习整理 2013-03-03 21:27 |
不错学习了  回复  
  
# re: httpclient 学习整理[未登录] 2013-03-21 15:08 |
非常受用的说!  回复  
  
# re: httpclient 学习整理 2013-05-21 15:50 |
非常感谢!解决了我的实际问题~  回复  
  
# re: httpclient 学习整理[未登录] 2013-07-10 17:45 |
我参考写的貌似数据不能真正传过去啊?是什么原因呢?求解??  回复  
  
# re: httpclient 学习整理 2013-09-22 23:29 |
终于知道httpclient为何物了。学基本的看别人博客,学高深点或者出问题的时候去看凯发k8网页登录官网,不知道这样的学习方式好不好。  回复  
  
# re: httpclient 学习整理 2013-10-24 17:41 |
@wilhard
@wilhard
@wilhard
很好  回复  
  
# re: httpclient 学习整理 2013-10-31 17:15 |
好!  回复  
  
# re: httpclient 学习整理 2013-12-20 11:01 |
文字概括的很到位,很受用  回复  
  
# re: httpclient 学习整理 2014-04-14 10:05 |
加油  回复  
  
# re: httpclient 学习整理[未登录] 2014-07-26 00:37 |
学习了,感谢楼主分享!  回复  
  
# re: httpclient 学习整理 2014-09-27 15:02 |
谢谢分享  回复  
  
# re: httpclient 学习整理 2014-12-03 14:55 |
赞一个  回复  
  
# re: httpclient 学习整理 2015-06-29 11:11 |
请问下httpclient怎么绑定客户端的ip?  回复  
  
# re: httpclient 学习整理 2015-08-20 17:51 |
受教了  回复  
  

只有注册用户后才能发表评论。


网站导航:
              
 
网站地图