如果你希望在 Java 中关闭 SSL 验证,你可以使用以下方法:
-
使用自定义的 TrustManager。
-
在 SSLContext 中使用自定义的 TrustManager。
-
使用 HttpsURLConnection 时设置忽略证书。
下面是一些示例代码:文章来源:https://www.toymoban.com/news/detail-643832.html
第一种方法:文章来源地址https://www.toymoban.com/news/detail-643832.html
TrustManager[] trustAllCerts = new TrustManager[] {
new X509TrustManager() {
public java.security.cert.X509Certificate[] getAcceptedIssuers() {
return null;
}
public void checkClientTrusted(
java.security.cert.X509Certificate[] certs, String authType) {
}
public void checkServerTrusted(
java.security.cert.X509Certificate[] certs, String authType) {
}
}
};
// Install the all-trusting trust manager
try {
SSLContext sc = SSLContext.getInstance("SSL");
sc.init(null, trustAllCerts, new java.security.SecureRandom());
HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
} catch (Exception e) {
}
到了这里,关于Java 如何关闭ssl 验证的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!