JAVA通過(guò)HttpClient發(fā)送HTTP請(qǐng)求的方法示例
HttpClient介紹
HttpClient 不是一個(gè)瀏覽器。它是一個(gè)客戶(hù)端的 HTTP 通信實(shí)現(xiàn)庫(kù)。HttpClient的目標(biāo)是發(fā) 送和接收HTTP 報(bào)文。HttpClient不會(huì)去緩存內(nèi)容,執(zhí)行 嵌入在 HTML 頁(yè)面中的javascript 代碼,猜測(cè)內(nèi)容類(lèi)型,重新格式化請(qǐng)求/重定向URI,或者其它和 HTTP 運(yùn)輸無(wú)關(guān)的功能。
HttpClient使用
使用需要引入jar包,maven項(xiàng)目引入如下:
<dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>4.4.4</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> <version>4.5</version> </dependency>
使用方法,代碼如下:
package com.test; import java.io.File; import java.io.IOException; import java.security.KeyManagementException; import java.security.KeyStoreException; import java.security.NoSuchAlgorithmException; import java.util.Iterator; import java.util.List; import java.util.Map; import org.apache.http.HttpEntity; import org.apache.http.HttpStatus; import org.apache.http.client.config.RequestConfig; 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.config.Registry; import org.apache.http.config.RegistryBuilder; import org.apache.http.conn.socket.ConnectionSocketFactory; import org.apache.http.conn.socket.PlainConnectionSocketFactory; import org.apache.http.conn.ssl.SSLConnectionSocketFactory; import org.apache.http.conn.ssl.SSLContextBuilder; import org.apache.http.conn.ssl.TrustSelfSignedStrategy; import org.apache.http.entity.ContentType; import org.apache.http.entity.StringEntity; import org.apache.http.entity.mime.MultipartEntityBuilder; import org.apache.http.entity.mime.content.FileBody; import org.apache.http.entity.mime.content.StringBody; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.DefaultHttpRequestRetryHandler; import org.apache.http.impl.client.HttpClients; import org.apache.http.impl.conn.PoolingHttpClientConnectionManager; import org.apache.http.util.EntityUtils; /** * * @author H__D * @date 2016年10月19日 上午11:27:25 * */ public class HttpClientUtil { // utf-8字符編碼 public static final String CHARSET_UTF_8 = "utf-8"; // HTTP內(nèi)容類(lèi)型。 public static final String CONTENT_TYPE_TEXT_HTML = "text/xml"; // HTTP內(nèi)容類(lèi)型。相當(dāng)于form表單的形式,提交數(shù)據(jù) public static final String CONTENT_TYPE_FORM_URL = "application/x-www-form-urlencoded"; // HTTP內(nèi)容類(lèi)型。相當(dāng)于form表單的形式,提交數(shù)據(jù) public static final String CONTENT_TYPE_JSON_URL = "application/json;charset=utf-8"; // 連接管理器 private static PoolingHttpClientConnectionManager pool; // 請(qǐng)求配置 private static RequestConfig requestConfig; static { try { //System.out.println("初始化HttpClientTest~~~開(kāi)始"); SSLContextBuilder builder = new SSLContextBuilder(); builder.loadTrustMaterial(null, new TrustSelfSignedStrategy()); SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory( builder.build()); // 配置同時(shí)支持 HTTP 和 HTPPS Registry<ConnectionSocketFactory> socketFactoryRegistry = RegistryBuilder.<ConnectionSocketFactory> create().register( "http", PlainConnectionSocketFactory.getSocketFactory()).register( "https", sslsf).build(); // 初始化連接管理器 pool = new PoolingHttpClientConnectionManager( socketFactoryRegistry); // 將最大連接數(shù)增加到200,實(shí)際項(xiàng)目最好從配置文件中讀取這個(gè)值 pool.setMaxTotal(200); // 設(shè)置最大路由 pool.setDefaultMaxPerRoute(2); // 根據(jù)默認(rèn)超時(shí)限制初始化requestConfig int socketTimeout = 10000; int connectTimeout = 10000; int connectionRequestTimeout = 10000; requestConfig = RequestConfig.custom().setConnectionRequestTimeout( connectionRequestTimeout).setSocketTimeout(socketTimeout).setConnectTimeout( connectTimeout).build(); //System.out.println("初始化HttpClientTest~~~結(jié)束"); } catch (NoSuchAlgorithmException e) { e.printStackTrace(); } catch (KeyStoreException e) { e.printStackTrace(); } catch (KeyManagementException e) { e.printStackTrace(); } // 設(shè)置請(qǐng)求超時(shí)時(shí)間 requestConfig = RequestConfig.custom().setSocketTimeout(50000).setConnectTimeout(50000) .setConnectionRequestTimeout(50000).build(); } public static CloseableHttpClient getHttpClient() { CloseableHttpClient httpClient = HttpClients.custom() // 設(shè)置連接池管理 .setConnectionManager(pool) // 設(shè)置請(qǐng)求配置 .setDefaultRequestConfig(requestConfig) // 設(shè)置重試次數(shù) .setRetryHandler(new DefaultHttpRequestRetryHandler(0, false)) .build(); return httpClient; } /** * 發(fā)送Post請(qǐng)求 * * @param httpPost * @return */ private static String sendHttpPost(HttpPost httpPost) { CloseableHttpClient httpClient = null; CloseableHttpResponse response = null; // 響應(yīng)內(nèi)容 String responseContent = null; try { // 創(chuàng)建默認(rèn)的httpClient實(shí)例. httpClient = getHttpClient(); // 配置請(qǐng)求信息 httpPost.setConfig(requestConfig); // 執(zhí)行請(qǐng)求 response = httpClient.execute(httpPost); // 得到響應(yīng)實(shí)例 HttpEntity entity = response.getEntity(); // 可以獲得響應(yīng)頭 // Header[] headers = response.getHeaders(HttpHeaders.CONTENT_TYPE); // for (Header header : headers) { // System.out.println(header.getName()); // } // 得到響應(yīng)類(lèi)型 // System.out.println(ContentType.getOrDefault(response.getEntity()).getMimeType()); // 判斷響應(yīng)狀態(tài) if (response.getStatusLine().getStatusCode() >= 300) { throw new Exception( "HTTP Request is not success, Response code is " + response.getStatusLine().getStatusCode()); } if (HttpStatus.SC_OK == response.getStatusLine().getStatusCode()) { responseContent = EntityUtils.toString(entity, CHARSET_UTF_8); EntityUtils.consume(entity); } } catch (Exception e) { e.printStackTrace(); } finally { try { // 釋放資源 if (response != null) { response.close(); } } catch (IOException e) { e.printStackTrace(); } } return responseContent; } /** * 發(fā)送Get請(qǐng)求 * * @param httpGet * @return */ private static String sendHttpGet(HttpGet httpGet) { CloseableHttpClient httpClient = null; CloseableHttpResponse response = null; // 響應(yīng)內(nèi)容 String responseContent = null; try { // 創(chuàng)建默認(rèn)的httpClient實(shí)例. httpClient = getHttpClient(); // 配置請(qǐng)求信息 httpGet.setConfig(requestConfig); // 執(zhí)行請(qǐng)求 response = httpClient.execute(httpGet); // 得到響應(yīng)實(shí)例 HttpEntity entity = response.getEntity(); // 可以獲得響應(yīng)頭 // Header[] headers = response.getHeaders(HttpHeaders.CONTENT_TYPE); // for (Header header : headers) { // System.out.println(header.getName()); // } // 得到響應(yīng)類(lèi)型 // System.out.println(ContentType.getOrDefault(response.getEntity()).getMimeType()); // 判斷響應(yīng)狀態(tài) if (response.getStatusLine().getStatusCode() >= 300) { throw new Exception( "HTTP Request is not success, Response code is " + response.getStatusLine().getStatusCode()); } if (HttpStatus.SC_OK == response.getStatusLine().getStatusCode()) { responseContent = EntityUtils.toString(entity, CHARSET_UTF_8); EntityUtils.consume(entity); } } catch (Exception e) { e.printStackTrace(); } finally { try { // 釋放資源 if (response != null) { response.close(); } } catch (IOException e) { e.printStackTrace(); } } return responseContent; } /** * 發(fā)送 post請(qǐng)求 * * @param httpUrl * 地址 */ public static String sendHttpPost(String httpUrl) { // 創(chuàng)建httpPost HttpPost httpPost = new HttpPost(httpUrl); return sendHttpPost(httpPost); } /** * 發(fā)送 get請(qǐng)求 * * @param httpUrl */ public static String sendHttpGet(String httpUrl) { // 創(chuàng)建get請(qǐng)求 HttpGet httpGet = new HttpGet(httpUrl); return sendHttpGet(httpGet); } /** * 發(fā)送 post請(qǐng)求(帶文件) * * @param httpUrl * 地址 * @param maps * 參數(shù) * @param fileLists * 附件 */ public static String sendHttpPost(String httpUrl, Map<String, String> maps, List<File> fileLists) { HttpPost httpPost = new HttpPost(httpUrl);// 創(chuàng)建httpPost MultipartEntityBuilder meBuilder = MultipartEntityBuilder.create(); if (maps != null) { for (String key : maps.keySet()) { meBuilder.addPart(key, new StringBody(maps.get(key), ContentType.TEXT_PLAIN)); } } if (fileLists != null) { for (File file : fileLists) { FileBody fileBody = new FileBody(file); meBuilder.addPart("files", fileBody); } } HttpEntity reqEntity = meBuilder.build(); httpPost.setEntity(reqEntity); return sendHttpPost(httpPost); } /** * 發(fā)送 post請(qǐng)求 * * @param httpUrl * 地址 * @param params * 參數(shù)(格式:key1=value1&key2=value2) * */ public static String sendHttpPost(String httpUrl, String params) { HttpPost httpPost = new HttpPost(httpUrl);// 創(chuàng)建httpPost try { // 設(shè)置參數(shù) if (params != null && params.trim().length() > 0) { StringEntity stringEntity = new StringEntity(params, "UTF-8"); stringEntity.setContentType(CONTENT_TYPE_FORM_URL); httpPost.setEntity(stringEntity); } } catch (Exception e) { e.printStackTrace(); } return sendHttpPost(httpPost); } /** * 發(fā)送 post請(qǐng)求 * * @param maps * 參數(shù) */ public static String sendHttpPost(String httpUrl, Map<String, String> maps) { String parem = convertStringParamter(maps); return sendHttpPost(httpUrl, parem); } /** * 發(fā)送 post請(qǐng)求 發(fā)送json數(shù)據(jù) * * @param httpUrl * 地址 * @param paramsJson * 參數(shù)(格式 json) * */ public static String sendHttpPostJson(String httpUrl, String paramsJson) { HttpPost httpPost = new HttpPost(httpUrl);// 創(chuàng)建httpPost try { // 設(shè)置參數(shù) if (paramsJson != null && paramsJson.trim().length() > 0) { StringEntity stringEntity = new StringEntity(paramsJson, "UTF-8"); stringEntity.setContentType(CONTENT_TYPE_JSON_URL); httpPost.setEntity(stringEntity); } } catch (Exception e) { e.printStackTrace(); } return sendHttpPost(httpPost); } /** * 發(fā)送 post請(qǐng)求 發(fā)送xml數(shù)據(jù) * * @param httpUrl 地址 * @param paramsXml 參數(shù)(格式 Xml) * */ public static String sendHttpPostXml(String httpUrl, String paramsXml) { HttpPost httpPost = new HttpPost(httpUrl);// 創(chuàng)建httpPost try { // 設(shè)置參數(shù) if (paramsXml != null && paramsXml.trim().length() > 0) { StringEntity stringEntity = new StringEntity(paramsXml, "UTF-8"); stringEntity.setContentType(CONTENT_TYPE_TEXT_HTML); httpPost.setEntity(stringEntity); } } catch (Exception e) { e.printStackTrace(); } return sendHttpPost(httpPost); } /** * 將map集合的鍵值對(duì)轉(zhuǎn)化成:key1=value1&key2=value2 的形式 * * @param parameterMap * 需要轉(zhuǎn)化的鍵值對(duì)集合 * @return 字符串 */ public static String convertStringParamter(Map parameterMap) { StringBuffer parameterBuffer = new StringBuffer(); if (parameterMap != null) { Iterator iterator = parameterMap.keySet().iterator(); String key = null; String value = null; while (iterator.hasNext()) { key = (String) iterator.next(); if (parameterMap.get(key) != null) { value = (String) parameterMap.get(key); } else { value = ""; } parameterBuffer.append(key).append("=").append(value); if (iterator.hasNext()) { parameterBuffer.append("&"); } } } return parameterBuffer.toString(); } public static void main(String[] args) throws Exception { System.out.println(sendHttpGet("http://www.baidu.com")); } }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- java使用httpclient 發(fā)送請(qǐng)求的示例
- java?11新特性HttpClient主要組件及發(fā)送請(qǐng)求示例詳解
- Java通過(guò)HttpClient進(jìn)行HTTP請(qǐng)求的代碼詳解
- java中httpclient封裝post請(qǐng)求和get的請(qǐng)求實(shí)例
- Java commons-httpclient如果實(shí)現(xiàn)get及post請(qǐng)求
- Java使用HttpClient實(shí)現(xiàn)Post請(qǐng)求實(shí)例
- java實(shí)現(xiàn)HttpClient異步請(qǐng)求資源的方法
- Java高并發(fā)場(chǎng)景下的 HttpClient請(qǐng)求優(yōu)化實(shí)現(xiàn)
相關(guān)文章
FeignClient設(shè)置動(dòng)態(tài)url方式
文章介紹了如何在Spring Cloud環(huán)境下使用FeignClient實(shí)現(xiàn)負(fù)載均衡,通過(guò)配置Nacos和FeignClient屬性,可以實(shí)現(xiàn)服務(wù)間的負(fù)載均衡調(diào)用2024-11-11Springboot使用@RefreshScope注解實(shí)現(xiàn)配置文件的動(dòng)態(tài)加載
本文主要介紹了Springboot使用@RefreshScope注解實(shí)現(xiàn)配置文件的動(dòng)態(tài)加載,文中通過(guò)示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2021-09-09springboot無(wú)法加載yml配置文件的解決方案
在Spring?Boot項(xiàng)目中,嘗試加載yml配置文件時(shí)遇到問(wèn)題,通過(guò)一系列排查步驟發(fā)現(xiàn)配置文件未被打包到j(luò)ar文件中,導(dǎo)致無(wú)法加載,添加`spring-boot-maven-plugin`依賴(lài)后,配置文件被打包,問(wèn)題解決2024-12-12JavaWeb項(xiàng)目實(shí)戰(zhàn)之表白墻和在線相冊(cè)
這篇文章主要給大家介紹了關(guān)于JavaWeb項(xiàng)目實(shí)戰(zhàn)之表白墻和在線相冊(cè)的相關(guān)資料,JavaWeb表白墻是一款基于JavaWeb技術(shù)開(kāi)發(fā)的表白墻應(yīng)用,用戶(hù)可以在上面發(fā)布表白信息,也可以查看其他用戶(hù)的表白信息,需要的朋友可以參考下2023-03-03java實(shí)現(xiàn)操作系統(tǒng)的短進(jìn)程作業(yè)調(diào)度示例分享
java編寫(xiě)的實(shí)現(xiàn)了操作系統(tǒng)中的短作業(yè)進(jìn)程,可以實(shí)現(xiàn)幾道作業(yè)同時(shí)作業(yè)調(diào)度2014-02-02Spring模塊詳解之Spring ORM和Spring Transaction詳解
Spring ORM 是 Spring 框架的模塊之一,旨在簡(jiǎn)化與 JPA、Hibernate、JDO 等 ORM 工具的集成,通過(guò)提供統(tǒng)一的 API 和模板類(lèi),如 HibernateTemplate 和 JpaTemplate,Spring ORM 使開(kāi)發(fā)者可以更便捷地執(zhí)行數(shù)據(jù)庫(kù)操作,感興趣的朋友跟隨小編一起看看吧2024-09-09JavaWeb實(shí)戰(zhàn)之編寫(xiě)單元測(cè)試類(lèi)測(cè)試數(shù)據(jù)庫(kù)操作
這篇文章主要介紹了JavaWeb實(shí)戰(zhàn)之編寫(xiě)單元測(cè)試類(lèi)測(cè)試數(shù)據(jù)庫(kù)操作,文中有非常詳細(xì)的代碼示例,對(duì)正在學(xué)習(xí)javaweb的小伙伴們有很大的幫助,需要的朋友可以參考下2021-04-04