Java用HttpClient3傳送http/https協議get/post請求,傳送map,jso
使用的是httpclient 3.1,
使用”httpclient”4的寫法相對簡單點,百度:httpclient https post
當不需要使用任何證照訪問https網頁時,只需配置信任任何證照
其中信任任何證照的類MySSLProtocolSocketFactory
主要程式碼:
HttpClient client = new HttpClient();
Protocol myhttps = new Protocol(“https”, new MySSLProtocolSocketFactory(), 443);
Protocol.registerProtocol(“https”, myhttps);
PostMethod method = new PostMethod(url);
HttpUtil
說到這裡,也給大家推薦一個架構交流學習群:835544715,裡面會分享一些資深架構師錄製的視訊錄影:有Spring,MyBatis,Netty原始碼分析,高併發、高效能、分散式、微服務架構的原理,JVM效能優化這些成為架構師必備的知識體系。還能領取免費的學習資源,相信對於已經工作和遇到技術瓶頸的碼友,在這個群裡會有你需要的內容。
Java程式碼
-
package com.urthinker.wxyh.util;
-
-
import java.io.BufferedReader;
-
import java.io.IOException;
-
import java.io.InputStreamReader;
-
import java.util.Map;
-
-
import org.apache.commons.httpclient.HttpClient;
-
import org.apache.commons.httpclient.HttpMethod;
-
import org.apache.commons.httpclient.HttpStatus;
-
import org.apache.commons.httpclient.URIException;
-
import org.apache.commons.httpclient.methods.GetMethod;
-
import org.apache.commons.httpclient.methods.PostMethod;
-
import org.apache.commons.httpclient.methods.RequestEntity;
-
import org.apache.commons.httpclient.methods.StringRequestEntity;
-
import org.apache.commons.httpclient.params.HttpMethodParams;
-
import org.apache.commons.httpclient.protocol.Protocol;
-
import org.apache.commons.httpclient.util.URIUtil;
-
import org.apache.commons.lang.StringUtils;
-
import org.apache.commons.logging.Log;
-
import org.apache.commons.logging.LogFactory;
-
-
/**
-
* HTTP工具類
-
* 傳送http/https協議get/post請求,傳送map,json,xml,txt資料
-
*
-
* @author happyqing 2016-5-20
-
*/
-
public final class HttpUtil {
-
private static Log log = LogFactory.getLog(HttpUtil.class);
-
-
/**
-
* 執行一個http/https get請求,返回請求響應的文字資料
-
*
-
* @param url 請求的URL地址
-
* @param queryString 請求的查詢引數,可以為null
-
* @param charset 字符集
-
* @param pretty 是否美化
-
* @return 返回請求響應的文字資料
-
*/
-
public static String doGet(String url, String queryString, String charset, boolean pretty) {
-
StringBuffer response = new StringBuffer();
-
HttpClient client = new HttpClient();
-
if(url.startsWith(“https”)){
-
//https請求
-
Protocol myhttps = new Protocol(“https”, new MySSLProtocolSocketFactory(), 443);
-
Protocol.registerProtocol(“https”, myhttps);
-
}
-
HttpMethod method = new GetMethod(url);
-
try {
-
if (StringUtils.isNotBlank(queryString))
-
//對get請求引數編碼,漢字編碼後,就成為%式樣的字串
-
method.setQueryString(URIUtil.encodeQuery(queryString));
-
client.executeMethod(method);
-
if (method.getStatusCode() == HttpStatus.SC_OK) {
-
BufferedReader reader = new BufferedReader(new InputStreamReader(method.getResponseBodyAsStream(), charset));
-
String line;
-
while ((line = reader.readLine()) != null) {
-
if (pretty)
-
response.append(line).append(System.getProperty(“line.separator”));
-
else
-
response.append(line);
-
}
-
reader.close();
-
}
-
} catch (URIException e) {
-
log.error(“執行Get請求時,編碼查詢字串“” + queryString + “”發生異常!”, e);
-
} catch (IOException e) {
-
log.error(“執行Get請求” + url + “時,發生異常!”, e);
-
} finally {
-
method.releaseConnection();
-
}
-
return response.toString();
-
}
-
-
/**
-
* 執行一個http/https post請求,返回請求響應的文字資料
-
*
-
* @param url 請求的URL地址
-
* @param params 請求的查詢引數,可以為null
-
* @param charset 字符集
-
* @param pretty 是否美化
-
* @return 返回請求響應的文字資料
-
*/
-
public static String doPost(String url, Map<String, String> params, String charset, boolean pretty) {
-
StringBuffer response = new StringBuffer();
-
HttpClient client = new HttpClient();
-
if(url.startsWith(“https”)){
-
//https請求
-
Protocol myhttps = new Protocol(“https”, new MySSLProtocolSocketFactory(), 443);
-
Protocol.registerProtocol(“https”, myhttps);
-
}
-
PostMethod method = new PostMethod(url);
-
//設定引數的字符集
-
method.getParams().setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET,charset);
-
//設定post資料
-
if (params != null) {
-
//HttpMethodParams p = new HttpMethodParams();
-
for (Map.Entry<String, String> entry : params.entrySet()) {
-
//p.setParameter(entry.getKey(), entry.getValue());
-
method.setParameter(entry.getKey(), entry.getValue());
-
}
-
//method.setParams(p);
-
}
-
try {
-
client.executeMethod(method);
-
if (method.getStatusCode() == HttpStatus.SC_OK) {
-
BufferedReader reader = new BufferedReader(new InputStreamReader(method.getResponseBodyAsStream(), charset));
-
String line;
-
while ((line = reader.readLine()) != null) {
-
if (pretty)
-
response.append(line).append(System.getProperty(“line.separator”));
-
else
-
response.append(line);
-
}
-
reader.close();
-
}
-
} catch (IOException e) {
-
log.error(“執行Post請求” + url + “時,發生異常!”, e);
-
} finally {
-
method.releaseConnection();
-
}
-
return response.toString();
-
}
-
-
/**
-
* 執行一個http/https post請求, 直接寫資料 json,xml,txt
-
*
-
* @param url 請求的URL地址
-
* @param params 請求的查詢引數,可以為null
-
* @param charset 字符集
-
* @param pretty 是否美化
-
* @return 返回請求響應的文字資料
-
*/
-
public static String writePost(String url, String content, String charset, boolean pretty) {
-
StringBuffer response = new StringBuffer();
-
HttpClient client = new HttpClient();
-
if(url.startsWith(“https”)){
-
//https請求
-
Protocol myhttps = new Protocol(“https”, new MySSLProtocolSocketFactory(), 443);
-
Protocol.registerProtocol(“https”, myhttps);
-
}
-
PostMethod method = new PostMethod(url);
-
try {
-
//設定請求頭部型別引數
-
//method.setRequestHeader(“Content-Type”,”text/plain; charset=utf-8″);//application/json,text/xml,text/plain
-
//method.setRequestBody(content); //InputStream,NameValuePair[],String
-
//RequestEntity是個介面,有很多實現類,傳送不同型別的資料
-
RequestEntity requestEntity = new StringRequestEntity(content,“text/plain”,charset);//application/json,text/xml,text/plain
-
method.setRequestEntity(requestEntity);
-
client.executeMethod(method);
-
if (method.getStatusCode() == HttpStatus.SC_OK) {
-
BufferedReader reader = new BufferedReader(new InputStreamReader(method.getResponseBodyAsStream(), charset));
-
String line;
-
while ((line = reader.readLine()) != null) {
-
if (pretty)
-
response.append(line).append(System.getProperty(“line.separator”));
-
else
-
response.append(line);
-
}
-
reader.close();
-
}
-
} catch (Exception e) {
-
log.error(“執行Post請求” + url + “時,發生異常!”, e);
-
} finally {
-
method.releaseConnection();
-
}
-
return response.toString();
-
}
-
-
public static void main(String[] args) {
-
try {
-
String y = doGet(“http://video.sina.com.cn/life/tips.html”, null, “GBK”, true);
-
System.out.println(y);
-
// Map params = new HashMap();
-
// params.put(“param1”, “value1”);
-
// params.put(“json”, “{“aa”:”11″}”);
-
// String j = doPost(“http://localhost/uplat/manage/test.do?reqCode=add”, params, “UTF-8”, true);
-
// System.out.println(j);
-
-
} catch (Exception e) {
-
// TODO Auto-generated catch block
-
e.printStackTrace();
-
}
-
}
-
-
}
MySSLProtocolSocketFactory
Java程式碼
-
import java.io.IOException;
-
import java.net.InetAddress;
-
import java.net.InetSocketAddress;
-
import java.net.Socket;
-
import java.net.SocketAddress;
-
import java.net.UnknownHostException;
-
import java.security.KeyManagementException;
-
import java.security.NoSuchAlgorithmException;
-
import java.security.cert.CertificateException;
-
import java.security.cert.X509Certificate;
-
-
import javax.net.SocketFactory;
-
import javax.net.ssl.SSLContext;
-
import javax.net.ssl.TrustManager;
-
import javax.net.ssl.X509TrustManager;
-
-
import org.apache.commons.httpclient.ConnectTimeoutException;
-
import org.apache.commons.httpclient.params.HttpConnectionParams;
-
import org.apache.commons.httpclient.protocol.ProtocolSocketFactory;
-
-
/**
-
* author by lpp
-
*
-
* created at 2010-7-26 上午09:29:33
-
*/
-
public class MySSLProtocolSocketFactory implements ProtocolSocketFactory {
-
-
private SSLContext sslcontext = null;
-
-
private SSLContext createSSLContext() {
-
SSLContext sslcontext = null;
-
try {
-
// sslcontext = SSLContext.getInstance(“SSL”);
-
sslcontext = SSLContext.getInstance(“TLS”);
-
sslcontext.init(null,
-
new TrustManager[] { new TrustAnyTrustManager() },
-
new java.security.SecureRandom());
-
} catch (NoSuchAlgorithmException e) {
-
e.printStackTrace();
-
} catch (KeyManagementException e) {
-
e.printStackTrace();
-
}
-
return sslcontext;
-
}
-
-
private SSLContext getSSLContext() {
-
if (this.sslcontext == null) {
-
this.sslcontext = createSSLContext();
-
}
-
return this.sslcontext;
-
}
-
-
public Socket createSocket(Socket socket, String host, int port, boolean autoClose)
-
throws IOException, UnknownHostException {
-
return getSSLContext().getSocketFactory().createSocket(socket, host, port, autoClose);
-
}
-
-
public Socket createSocket(String host, int port) throws IOException, UnknownHostException {
-
return getSSLContext().getSocketFactory().createSocket(host, port);
-
}
-
-
public Socket createSocket(String host, int port, InetAddress clientHost, int clientPort)
-
throws IOException, UnknownHostException {
-
return getSSLContext().getSocketFactory().createSocket(host, port, clientHost, clientPort);
-
}
-
-
public Socket createSocket(String host, int port, InetAddress localAddress,
-
int localPort, HttpConnectionParams params) throws IOException,
-
UnknownHostException, ConnectTimeoutException {
-
if (params == null) {
-
throw new IllegalArgumentException(“Parameters may not be null”);
-
}
-
int timeout = params.getConnectionTimeout();
-
SocketFactory socketfactory = getSSLContext().getSocketFactory();
-
if (timeout == 0) {
-
return socketfactory.createSocket(host, port, localAddress, localPort);
-
} else {
-
Socket socket = socketfactory.createSocket();
-
SocketAddress localaddr = new InetSocketAddress(localAddress, localPort);
-
SocketAddress remoteaddr = new InetSocketAddress(host, port);
-
socket.bind(localaddr);
-
socket.connect(remoteaddr, timeout);
-
return socket;
-
}
-
}
-
-
// 自定義私有類
-
private static class TrustAnyTrustManager implements X509TrustManager {
-
-
public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {
-
}
-
-
public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {
-
}
-
-
public X509Certificate[] getAcceptedIssuers() {
-
return new X509Certificate[] {};
-
}
-
}
-
-
}
-
-
想要學習Java高架構、分散式架構、高可擴充套件、高效能、高併發、效能優化、Spring boot、Redis、ActiveMQ、Nginx、Mycat、Netty、Jvm大型分散式專案實戰學習架構師視訊免費獲取
-
架構群:835544715
-
相關文章
- Java用HttpClient3傳送http/https協議get/post請求,傳送map,json,xml,txt資料JavaHTTPclient協議JSONXML
- java傳送http的get、post請求JavaHTTP
- java傳送GET和post請求Java
- 【轉】怎麼用PHP傳送HTTP請求(POST請求、GET請求)?PHPHTTP
- post 封裝Map 傳送請求封裝
- Java傳送Post請求Java
- PHP傳送POST和GET請求PHP
- python傳送HTTP POST請求PythonHTTP
- httprequest- post- get -傳送請求HTTP
- php 利用socket傳送GET,POST請求PHP
- java傳送http請求JavaHTTP
- postman(二):使用postman傳送get or post請求Postman
- file_get_contents傳送post請求
- Postman傳送Post請求Postman
- Golang:使用go-resty/resty傳送http請求get和postGolangRESTHTTP
- 用Fiddler 傳送post請求
- 傳送GET請求 示例
- cURL實現傳送Get和Post請求(PHP)PHP
- Go使用net/http庫傳送GET請求GoHTTP
- Go HTTP GET 請求可以傳送 body 嗎GoHTTP
- linux用curl傳送post請求Linux
- C# 傳送POST請求C#
- java傳送get請求帶引數Java
- Android 傳送HTTP GET POST 請求以及通過 MultipartEntityBuilder 上傳檔案(二)AndroidHTTPUI
- perl傳送http請求HTTP
- oracle使用utl_http包傳送post請求OracleHTTP
- 使用HttpClient傳送GET請求HTTPclient
- Go語言開發傳送Get和Post請求Go
- SpringMVC中如何傳送GET請求、POST請求、PUT請求、DELETE請求。SpringMVCdelete
- java傳送post請求 ,請求資料放到body裡Java
- 使用C#傳送POST請求C#
- 使用httpclient傳送http請求HTTPclient
- java apache commons HttpClient傳送get和post請求的學習整理JavaApacheHTTPclient
- 以Raw的方式傳送POST請求
- 使用Postman傳送POST請求的指南Postman
- 使用Feign傳送HTTP請求HTTP
- .net 後臺 傳送http請求HTTP
- curl 傳送 POST 請求的四種方式