常用代码块:创建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的主要内容,如果未能解决你的问题,请参考以下文章

js常用事件

静态代码块在何时调用

移动端开发基础16使用代码块直接创建组件模板

java 实现HTTP连接(HTTPClient)

HttpClient使用详解

接口测试—HttpClient