常用代码块:创建httpclient 2
Posted 范世强的笔记(SEC-fsq)
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用代码块:创建httpclient 2相关的知识,希望对你有一定的参考价值。
HttpGet httpGet = new HttpGet(url);
SSLContext sslcontext = SSLContexts.custom()
.loadTrustMaterial(new MyTrustStrategy()).build();
RequestConfig requestConfig = RequestConfig.custom().setConnectTimeout(3000)
.setConnectionRequestTimeout(3000).setSocketTimeout(3000).build();
CloseableHttpClient httpclient = HttpClients.custom().setSSLContext(sslcontext)
.setSSLHostnameVerifier(new MyHostnameVerifier())
.setDefaultRequestConfig(requestConfig).build();
CloseableHttpResponse response = httpclient.execute(httpGet);
定义类MyTrustStrategy,信任各种证书。
package com.teamdev.jxbrowser.chromium.demo;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import org.apache.http.conn.ssl.TrustStrategy;
public class MyTrustStrategy implements TrustStrategy {
@Override
public boolean isTrusted(X509Certificate[] chain, String authType) throws CertificateException {
// TODO Auto-generated method stub
return true;
}
}
以上是关于常用代码块:创建httpclient 2的主要内容,如果未能解决你的问题,请参考以下文章