码迷,mamicode.com
首页 > Web开发 > 详细

常用代码块:创建httpclient 2

时间:2016-09-19 01:16:56      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:

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

标签:

原文地址:http://www.cnblogs.com/SEC-fsq/p/5883564.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!