日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > java >内容正文

java

httpf发送 json_Java用HttpClient3发送http/https协议get/post请求,发送map,json,xml,txt数据...

發布時間:2023/12/10 java 122 豆豆
生活随笔 收集整理的這篇文章主要介紹了 httpf发送 json_Java用HttpClient3发送http/https协议get/post请求,发送map,json,xml,txt数据... 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

使用的是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

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 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 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

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[] {};

}

}

}

參考:

httpclient 4 https請求

百度:httpclient https post

創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎

總結

以上是生活随笔為你收集整理的httpf发送 json_Java用HttpClient3发送http/https协议get/post请求,发送map,json,xml,txt数据...的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。