HttpClient 4.0的使用详解

来源:互联网 发布:途宝网络飞鲸卡 编辑:程序博客网 时间:2024/05/17 22:29


HttpClient程序包是一个实现了 HTTP协议的客户端编程工具包,要想熟练的掌握它,必须熟悉 HTTP协议。对于HTTP协议来说,无非就是用户请求数据,服务器端响应用户请求,并将内容结果返回给用户。HTTP1.1由以下几种请求组成:GET,HEAD, POST, PUT, DELETE, TRACE ,OPTIONS,因此对应到HttpClient程序包中分别用HttpGet,HttpHead, HttpPost, HttpPut, HttpDelete, HttpTrace, HttpOptions 这几个类来创建请求。所有的这些类均实现了HttpUriRequest接口,故可以作为execute的执行参数使用。

HTTP请求

当然在所有请求中最常用的还是GET与POST两种请求,创建请求的方式如下: 

HttpUriRequest request = newHttpPost("http://localhost/index.html");

HttpUriRequest request = newHttpGet(“http://127.0.0.1:8080/index.html”);

HTTP请求格式告诉我们,有两种方式可以为request提供参数:request-line方式与request-body方式。

Ø  request-line方式是指在请求行上通过URI直接提供参数。

(1)可以在生成request对象时提供带参数的URI,如:

HttpUriRequest request = newHttpGet("http://localhost/index.html?param1=value1&param2=value2");

(2)HttpClient程序包还提供了URIUtils工具类,可以通过它生成带参数的URI,如: 

URI uri =URIUtils.createURI("http", "localhost", -1,"/index.html",

   "param1=value1&param2=value2", null);

HttpUriRequest request = newHttpGet(uri);

System.out.println(request.getURI());

上例的实例结果如下:

 http://localhost/index.html?param1=value1&param2=value2

(3)需要注意的是,如果参数中含有中文,需将参数进行URLEncoding处理,如:

 String param ="param1=" + URLEncoder.encode("中国", "UTF-8") +"&param2=value2";

URI uri =URIUtils.createURI("http", "localhost", 8080,"/sshsky/index.html",param, null);

System.out.println(uri);

 上例的实例结果如下:

  http://localhost/index.html?param1=%E4%B8%AD%E5%9B%BD&param2=value2

(4)对于参数的URLEncoding处理,HttpClient程序包为我们准备了另一个工具类:URLEncodedUtils。通过它,我们可以直观的(但是比较复杂)生成URI,如:

[java] view plaincopyprint?
  1.  List params = newArrayList();  
  2.   
  3. params.add(newBasicNameValuePair("param1""中国"));  
  4.   
  5. params.add(newBasicNameValuePair("param2""value2"));  
  6.   
  7. String param =URLEncodedUtils.format(params, "UTF-8");  
  8.   
  9. URI uri =URIUtils.createURI("http""localhost"8080,"/sshsky/index.html",param, null);  
  10.   
  11. System.out.println(uri);  

 上例的实例结果如下:

  http://localhost/index.html?param1=%E4%B8%AD%E5%9B%BD&param2=value2

Ø  request-body方式是指在请求的request-body中提供参数

与 request-line方式不同,request-body方式是在request-body中提供参数,此方式只能用于进行POST请求。在HttpClient程序包中有两个类可以完成此项工作,它们分别是UrlEncodedFormEntity类与MultipartEntity类。这 两个类均实现了HttpEntity接口。

(1)UrlEncodedFormEntity类,故名思意该类主要用于form表单提交。通过该类创建的对象可以模拟传统的HTML表单传送POST请求中的参数。如下面的表单:

[html] view plaincopyprint?
  1. <formactionformaction="http://localhost/index.html" method="POST">  
  2.   
  3.     <inputtypeinputtype="text" name="param1" value="中国"/>  
  4.   
  5.     <inputtypeinputtype="text" name="param2" value="value2"/>  
  6.   
  7.     <inupttypeinupttype="submit" value="submit"/>  
  8.   
  9. </form>  

即可以通过下面的代码实现:

[java] view plaincopyprint?
  1. List formParams = newArrayList();  
  2.   
  3. formParams.add(newBasicNameValuePair("param1""中国"));  
  4.   
  5. formParams.add(newBasicNameValuePair("param2""value2"));  
  6.   
  7. HttpEntity entity = newUrlEncodedFormEntity(formParams, "UTF-8");  
  8.   
  9. HttpPost request = newHttpPost(“http://localhost/index.html”);  
  10.   
  11. request.setEntity(entity);  

 当然,如果想查看HTTP数据格式,可以通过HttpEntity对象的各种方法取得。如:

[java] view plaincopyprint?
  1. List formParams = newArrayList();  
  2.   
  3. formParams.add(newBasicNameValuePair("param1""中国"));  
  4.   
  5. formParams.add(newBasicNameValuePair("param2""value2"));  
  6.   
  7. UrlEncodedFormEntity entity =new UrlEncodedFormEntity(formParams, "UTF-8");  
  8.   
  9. System.out.println(entity.getContentType());  
  10.   
  11. System.out.println(entity.getContentLength());  
  12.   
  13. System.out.println(EntityUtils.getContentCharSet(entity));  
  14.   
  15. System.out.println(EntityUtils.toString(entity));  

上例的实例结果如下:

   Content-Type: application/x-www-form-urlencoded; charset=UTF-8

    39

    UTF-8

   param1=%E4%B8%AD%E5%9B%BD&param2=value2 

(2)除了传统的application/x-www-form-urlencoded表单,还有另一个经常用到的是上传文件用的表单,这种表单的类型为 multipart/form-data。在HttpClient程序扩展包(HttpMime)中专门有一个类与之对应,那就是MultipartEntity类。此类同样实现了HttpEntity接口。如下面的表单:

[html] view plaincopyprint?
  1. <formactionformaction="http://localhost/index.html" method="POST"  
  2.   
  3.        enctype="multipart/form-data">  
  4.   
  5.     <inputtypeinputtype="text" name="param1" value="中国"/>  
  6.   
  7.     <inputtypeinputtype="text" name="param2" value="value2"/>  
  8.   
  9.     <inputtypeinputtype="file" name="param3"/>  
  10.   
  11.     <inupttypeinupttype="submit" value="submit"/>  
  12.   
  13. </form>  

可以用下面的代码实现:

[java] view plaincopyprint?
  1. MultipartEntity entity = newMultipartEntity();  
  2.   
  3. entity.addPart("param1",new StringBody("中国", Charset.forName("UTF-8")));  
  4.   
  5. entity.addPart("param2",new StringBody("value2", Charset.forName("UTF-8")));  
  6.   
  7. entity.addPart("param3",new FileBody(new File("C:\\1.txt")));  
  8.   
  9. HttpPost request = newHttpPost(“http://localhost/index.html”);  
  10.   
  11. request.setEntity(entity);  

HTTP响应 

HttpClient 程序包对于HTTP响应的处理较请求来说简单多了,其过程同样使用了HttpEntity接口。我们可以从HttpEntity对象中取出数据流(InputStream),该数据流就是服务器返回的响应数据。需要注意的是,HttpClient程序包不负责 解析数据流中的内容。如:

[java] view plaincopyprint?
  1. HttpUriRequest request = ...;  
  2.   
  3. HttpResponse response =httpClient.execute(request);  
  4.   
  5. // 从response中取出HttpEntity对象  
  6.   
  7. HttpEntity entity =response.getEntity();  
  8.   
  9. // 查看entity的各种指标  
  10.   
  11. System.out.println(entity.getContentType());  
  12.   
  13. System.out.println(entity.getContentLength());  
  14.   
  15. System.out.println(EntityUtils.getContentCharSet(entity));  
  16.   
  17. // 取出服务器返回的数据流  
  18.   
  19. InputStream stream =entity.getContent();  

或者采用如下的接口方式httpClient.execute(request,new ResponseHandler<T> response)进行调用,它的返回值直接对应的即为用户自己想获取的数据的类型及值。

具体实例解析,通过下述方法,即可获取到指定url的页面内容。

[java] view plaincopyprint?
  1. public static String executeStringByGet(String url, final Charset charset) {  
  2.   
  3.         String result = "";  
  4.   
  5.         HttpClient client = new DefaultHttpClient();  
  6.   
  7.         HttpGet get = new HttpGet(url);  
  8.   
  9.          
  10.   
  11.         try {  
  12.   
  13.             result = client.execute(get, new ResponseHandler<String>() {  
  14.   
  15.                 @Override  
  16.   
  17.                 public String handleResponse(HttpResponse response) throws ClientProtocolException, IOException {  
  18.   
  19.                     HttpEntity entity = response.getEntity();  
  20.   
  21.                     if(entity != null) {  
  22.   
  23.                         if(response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {  
  24.   
  25.                             return new String(EntityUtils.toByteArray(entity), charset.getValue());  
  26.   
  27.                         }  
  28.   
  29.                     }  
  30.   
  31.                     return "";  
  32.   
  33.                 }  
  34.   
  35.             });  
  36.   
  37.         } catch (Exception e) {  
  38.   
  39.             e.printStackTrace();  
  40.   
  41.         }  
  42.   
  43.    
  44.   
  45.         return result;  
  46.   
  47.     }  

HttpClient接口的详细使用:

[java] view plaincopyprint?
  1. package com.wow.common.test;  
  2.   
  3.    
  4.   
  5. import java.io.IOException;  
  6.   
  7. import java.util.regex.Matcher;  
  8.   
  9. import java.util.regex.Pattern;  
  10.   
  11.    
  12.   
  13. import org.apache.http.Header;  
  14.   
  15. import org.apache.http.HttpEntity;  
  16.   
  17. import org.apache.http.HttpResponse;  
  18.   
  19. import org.apache.http.HttpStatus;  
  20.   
  21. import org.apache.http.client.ClientProtocolException;  
  22.   
  23. import org.apache.http.client.HttpClient;  
  24.   
  25. import org.apache.http.client.methods.HttpGet;  
  26.   
  27. import org.apache.http.impl.client.DefaultHttpClient;  
  28.   
  29. import org.apache.http.util.EntityUtils;  
  30.   
  31.    
  32.   
  33. /** 
  34.  
  35.  * 类HttpClientTest.java的实现描述:TODO 类实现描述 
  36.  
  37.  * @author zheng.zhaoz 2012-2-9 下午07:33:18 
  38.  
  39.  */  
  40.   
  41. public class HttpClientTest {  
  42.   
  43.    
  44.   
  45.     public static void main(String[] args) {  
  46.   
  47.         HttpClient httpClient = new DefaultHttpClient();  
  48.   
  49.         //創建一個httpGet方法  
  50.   
  51.         HttpGet httpGet = new HttpGet("http://www.cnblogs.com/loveyakamoz/archive/2011/07/21/2113252.html");  
  52.   
  53.          
  54.   
  55.         //設置httpGet的參數信息  
  56.   
  57.         httpGet.setHeader("Accept""Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8");  
  58.   
  59.         httpGet.setHeader("Accept-Charset""GB2312,utf-8;q=0.7,*;q=0.7");  
  60.   
  61.         httpGet.setHeader("Accept-Encoding""gzip, deflate");  
  62.   
  63.         httpGet.setHeader("Accept-Language""zh-cn,zh;q=0.5");  
  64.   
  65.         httpGet.setHeader("Connection""keep-alive");  
  66.   
  67.         httpGet.setHeader("Cookie""__utma=226521935.73826752.1323672782.1325068020.1328770420.6;");  
  68.   
  69.         httpGet.setHeader("Host""www.cnblogs.com");  
  70.   
  71.         httpGet.setHeader("refer""http://www.baidu.com/s?tn=monline_5_dg&bs=httpclient4+MultiThreadedHttpConnectionManager");  
  72.   
  73.         httpGet.setHeader("User-Agent""Mozilla/5.0 (Windows NT 6.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2");  
  74.   
  75.         System.out.println("Accept-Charset: " + httpGet.getFirstHeader("Accept-Charset"));  
  76.   
  77.         System.out.println("Execute request: " + httpGet.getURI());  
  78.   
  79.          
  80.   
  81.         HttpResponse response = null;  
  82.   
  83.         try {  
  84.   
  85.             response = httpClient.execute(httpGet);  
  86.   
  87.         } catch (ClientProtocolException e) {  
  88.   
  89.             e.printStackTrace();  
  90.   
  91.         } catch (IOException e) {  
  92.   
  93.             e.printStackTrace();  
  94.   
  95.         }  
  96.   
  97.          
  98.   
  99.         //输出响应的所有头信息  
  100.   
  101.         if(response != null) {  
  102.   
  103.             Header headers[] = response.getAllHeaders();  
  104.   
  105.             int i = 0;  
  106.   
  107.             while (i < headers.length) {  
  108.   
  109.                 System.out.println(headers[i].getName() + ":  " + headers[i].getValue());  
  110.   
  111.                 i++;  
  112.   
  113.             }  
  114.   
  115.             if(response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {  
  116.   
  117.                 try {  
  118.   
  119.                     HttpEntity entity = response.getEntity();  
  120.   
  121.                     // 将源码流保存在一个byte数组当中,因为可能需要两次用到该流  
  122.   
  123.                     byte[] bytes = EntityUtils.toByteArray(entity);  
  124.   
  125.                     String charSet = "";  
  126.   
  127.                     // 如果头部Content-Type中包含了编码信息,那么我们可以直接在此处获取  
  128.   
  129.                     charSet = EntityUtils.getContentCharSet(entity);  
  130.   
  131.                     System.out.println("In header: " + charSet);  
  132.   
  133.                     // 如果头部中没有,需要 查看页面源码,这个方法虽然不能说完全正确,因为有些粗糙的网页编码者没有在页面中写头部编码信息  
  134.   
  135.                     if (charSet == "") {  
  136.   
  137.                         String regEx="(?=<meta).*?(?<=charset=[\\'|\\\"]?)([[a-z]|[A-Z]|[0-9]|-]*)";  
  138.   
  139.                         Pattern p=Pattern.compile(regEx, Pattern.CASE_INSENSITIVE);  
  140.   
  141.                         Matcher m=p.matcher(new String(bytes));  // 默认编码转成字符串,因为我们的匹配中无中文,所以串中可能的乱码对我们没有影响  
  142.   
  143.                         boolean result = m.find();  
  144.   
  145.                         if (m.groupCount() == 1) {  
  146.   
  147.                             charSet = m.group(1);  
  148.   
  149.                         } else {  
  150.   
  151.                             charSet = "";  
  152.   
  153.                         }  
  154.   
  155.                     }  
  156.   
  157.                     System.out.println("Last get: " + charSet);  
  158.   
  159.                     // 可以将原byte数组按照正常编码专成字符串输出(如果找到了编码的话)  
  160.   
  161.                     System.out.println("Encoding string is: " + new String(bytes, charSet));  
  162.   
  163.                 } catch (IOException e) {  
  164.   
  165.                     e.printStackTrace();  
  166.   
  167.                 }  
  168.   
  169.             }  
  170.   
  171.         }  
  172.   
  173.         //關閉聯接  
  174.   
  175.         httpClient.getConnectionManager().shutdown();     
  176.   
  177.     }  
  178.   
  179. }  

转自  http://blog.csdn.net/zhaozheng7758/article/details/7246737

1 0
原创粉丝点击