httpclient java客户端绕过_java httpclient跳过https证书验证

感谢 java httpclient跳过https证书验证 - 九条尾巴的猫 - 博客园 (cnblogs.com)

package com.cck.common.Utils;

import java.security.cert.CertificateException;

import java.security.cert.X509Certificate;

import javax.net.ssl.SSLContext;

import javax.net.ssl.TrustManager;

import javax.net.ssl.X509TrustManager;

import org.apache.http.client.HttpClient;

import org.apache.http.conn.ssl.NoopHostnameVerifier;

import org.apache.http.conn.ssl.SSLConnectionSocketFactory;

import org.apache.http.impl.client.CloseableHttpClient;

import org.apache.http.impl.client.HttpClients;

public class SkipHttpsUtil {

//绕过证书

public static HttpClient wrapClient() {

try {

SSLContext ctx = SSLContext.getInstance("TLS");

X509TrustManager tm = new X509TrustManager() {

public X509Certificate[] getAcceptedIssuers() {

return null;

}

public void checkClientTrusted(X509Certificate[] arg0,

String arg1) throws CertificateException {

}

public void checkServerTrusted(X509Certificate[] arg0,

String arg1) throws CertificateException {

}

};

ctx.init(null, new TrustManager[] { tm }, null);

SSLConnectionSocketFactory ssf = new SSLConnectionSocketFactory(

ctx, NoopHostnameVerifier.INSTANCE);

CloseableHttpClient httpclient = HttpClients.custom()

.setSSLSocketFactory(ssf).build();

return httpclient;

} catch (Exception e) {

return HttpClients.createDefault();

}

}

}

public String sendHttpPost(String url, String regJson) throws Exception {

SkipHttpsUtil skipHttpsUtil=new SkipHttpsUtil();

CloseableHttpClient httpClient =(CloseableHttpClient)skipHttpsUtil.wrapClient();

HttpPost httpPost = new HttpPost(url);

httpPost.addHeader("Content-Type", "application/json");

httpPost.setEntity(new StringEntity(regJson,"UTF-8")); //防止中文乱码

CloseableHttpResponse response = httpClient.execute(httpPost);

HttpEntity entity = response.getEntity();

String responseContent = EntityUtils.toString(entity, "UTF-8");

response.close();

httpClient.close();

return responseContent;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值