httpClient 使用詳解

1、

HttpClient:是一個接口java

首先須要先建立一個DefaultHttpClient的實例apache

HttpClient httpClient=new DefaultHttpClient(); 或者 CloseableHttpClient httpclient = HttpClients.createDefault();json

一、發送GET請求服務器

HttpGet httpget = new HttpGet("http://xxx");多線程

 httpclient.execute(httpget);  app

二、發送post請求socket

HttpPost httpPost = new HttpPost(url);post

添加參數url

response = httpclient.execute(httpPost);spa

2、

1. 基於標準、純淨的java語言。實現了Http1.0和Http1.1

2. 以可擴展的面向對象的結構實現了Http所有的方法(GET, POST, PUT, DELETE, HEAD, OPTIONS, and TRACE)。

3. 支持HTTPS協議。

4. 經過Http代理創建透明的鏈接。

5. 利用CONNECT方法經過Http代理創建隧道的https鏈接。

6. Basic, Digest, NTLMv1, NTLMv2, NTLM2 Session, SNPNEGO/Kerberos認證方案。

7. 插件式的自定義認證方案。

8. 便攜可靠的套接字工廠使它更容易的使用第三方解決方案。

9. 鏈接管理器支持多線程應用。支持設置最大鏈接數,同時支持設置每一個主機的最大鏈接數,發現並關閉過時的鏈接。

10. 自動處理Set-Cookie中的Cookie。

11. 插件式的自定義Cookie策略。

12. Request的輸出流能夠避免流中內容直接緩衝到socket服務器。

13. Response的輸入流能夠有效的從socket服務器直接讀取相應內容。

14. 在http1.0和http1.1中利用KeepAlive保持持久鏈接。

15. 直接獲取服務器發送的response code和 headers。

16. 設置鏈接超時的能力。

17. 實驗性的支持http1.1 response caching。

18. 源代碼基於Apache License 可免費獲取。

3、

使用HttpClient發送請求、接收響應很簡單,通常須要以下幾步便可。

1. 建立HttpClient對象。

2. 建立請求方法的實例,並指定請求URL。若是須要發送GET請求,建立HttpGet對象;若是須要發送POST請求,建立HttpPost對象。

3. 若是須要發送請求參數,可調用HttpGet、HttpPost共同的setParams(HetpParams params)方法來添加請求參數;對於HttpPost對象而言,也可調用setEntity(HttpEntity entity)方法來設置請求參數。

4. 調用HttpClient對象的execute(HttpUriRequest request)發送請求,該方法返回一個HttpResponse。

5. 調用HttpResponse的getAllHeaders()、getHeaders(String name)等方法可獲取服務器的響應頭;調用HttpResponse的getEntity()方法可獲取HttpEntity對象,該對象包裝了服務器的響應內容。程序可經過該對象獲取服務器的響應內容。

6. 釋放鏈接。不管執行方法是否成功,都必須釋放鏈接

 4、例子

package com.neo.utils.http;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import org.apache.http.HttpEntity;
import org.apache.http.NameValuePair;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.protocol.HTTP;
import org.apache.http.util.EntityUtils;

public class HttpClientDemo {
	public static void main(String[] args) throws Exception {
		String url = "www.xxx";
//		 postJson();
//		 get();
//		 postForm();
	}

	public static void postJson(String url, String jsonParams) throws Exception {
		// 建立默認的httpClient實例.
		CloseableHttpClient httpclient = null;
		// 接收響應結果
		CloseableHttpResponse response = null;
		// HttpClient httpclients = HttpClients.createDefault();
		try {
			// 建立httppost
			httpclient = HttpClients.createDefault();
			HttpPost httpPost = new HttpPost(url);
			httpPost.addHeader(HTTP.CONTENT_TYPE, "application/x-www-form-urlencoded");
			// 參數
			StringEntity se = new StringEntity(jsonParams);
			se.setContentEncoding("UTF-8");
			se.setContentType("application/json");// 發送json須要設置contentType
			httpPost.setEntity(se);
			response = httpclient.execute(httpPost);
			// 解析返結果
			HttpEntity entity = response.getEntity();
			if (entity != null) {
				String resStr = EntityUtils.toString(entity, "UTF-8");
				System.out.println(resStr);
			}
		} catch (Exception e) {
			throw e;
		} finally {
			httpclient.close();
			response.close();
		}
	}

	/**
	 * post方式提交表單(模擬用戶登陸請求)
	 * 
	 * @throws Exception
	 */
	public static void postForm(String url, Map<String, String> params) throws Exception {
		// 建立默認的httpClient實例.
		CloseableHttpClient httpclient = null;
		// 發送請求
		CloseableHttpResponse response = null;
		try {
			httpclient = HttpClients.createDefault();
			// 建立httppost

			HttpPost httppost = new HttpPost(url);
			// 建立參數隊列 ,經過一個NameValuePair集合來存放待提交的參數,並將這個參數集合傳入到一個
			List<NameValuePair> formparams = new ArrayList<NameValuePair>();
			// 設置參數
			for (String key : params.keySet()) {
				formparams.add(new BasicNameValuePair(key, params.get(key)));
			}
			// 參數轉碼
			UrlEncodedFormEntity uefEntity = new UrlEncodedFormEntity(formparams, "UTF-8");
			httppost.setEntity(uefEntity);
			response = httpclient.execute(httppost);
			//打印響應狀態
			System.out.println(response.getStatusLine().getStatusCode());
			HttpEntity entity = response.getEntity();
			if (entity != null) {
				System.out.println(EntityUtils.toString(entity, "UTF-8"));
			}
			// 釋放鏈接
		} catch (Exception e) {
			throw e;
		} finally {
			httpclient.close();
			response.close();
		}
	}

	/**
	 * 發送 get請求
	 * 
	 * @throws Exception
	 */
	public static void get(String url) throws Exception {
		CloseableHttpClient httpclient = null;
		CloseableHttpResponse response = null;
		try {
			httpclient = HttpClients.createDefault();
			// 建立httpget.
			HttpGet httpget = new HttpGet(url);
			// 執行get請求.
			response = httpclient.execute(httpget);
			// 獲取響應實體
			HttpEntity entity = response.getEntity();

			// 打印響應狀態
			System.out.println(response.getStatusLine().getStatusCode());
			if (entity != null) {
				// 打印響應內容
				System.out.println("Response content: " + EntityUtils.toString(entity));
			}
		} catch (Exception e) {
			throw e;
		} finally {
			httpclient.close();
			response.close();
		}
	}

}
相關文章
相關標籤/搜索