概述
SSLConnectionSocketFactory scsf = null;
try {
scsf = new SSLConnectionSocketFactory(SSLContexts.custom().loadTrustMaterial(null,new TrustSelfSignedStrategy()).build(),
NoopHostnameVerifier.INSTANCE);
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
} catch (KeyManagementException e) {
e.printStackTrace();
} catch (KeyStoreException e) {
e.printStackTrace();
}
HttpClient httpClient = HttpClients.custom().setSSLSocketFactory(scsf).build();
HttpPost httpPost = new HttpPost("https://www.baidu.com/api");
最后
以上就是害羞大米为你收集整理的JAVA 发送https请求 http绕过https请求构造(忽略服务端证书)的全部内容,希望文章能够帮你解决JAVA 发送https请求 http绕过https请求构造(忽略服务端证书)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复