JAVA-使用SSL证书和HTTPS的简单GET请求

我有一个扩展名为’.pfx’的文件以及此证书的密码。

我需要做的是将简单的GET请求发送到Web服务并读取响应正文。

我需要实现类似于以下方法:

String getHttpResponse(String url, String certificateFile, String passwordToCertificate){

...

}

我还尝试使用openssl将证书转换为“无密码”格式:

Convert a PKCS#12 file (.pfx .p12) containing a private key and certificates to PEM:

openssl pkcs12 -in keyStore.pfx -out keyStore.pem -nodes

因此,my方法的替代实现可能是:

String getHttpResponse(String url, String certificateFile){

...

}

非常感谢您的帮助,我花了半天的时间进行了搜索,但是我还没有找到可以帮助我的示例,似乎我在理解一些关于SSL和其他内容的基本假设时遇到了问题。

回答:

我终于找到了一个很好的解决方案(无需创建自定义SSL上下文):

String getHttpResponseWithSSL(String url) throws Exception {

//default truststore parameters

System.setProperty("javax.net.ssl.trustStore", "/usr/lib/jvm/java-6-openjdk/jre/lib/securitycacerts");

System.setProperty("javax.net.ssl.trustStorePassword", "changeit");

System.setProperty("javax.net.ssl.trustStoreType", "JKS");

//my certificate and password

System.setProperty("javax.net.ssl.keyStore", "mycert.pfx");

System.setProperty("javax.net.ssl.keyStorePassword", "mypass");

System.setProperty("javax.net.ssl.keyStoreType", "PKCS12");

HttpClient httpclient = new HttpClient();

GetMethod method = new GetMethod();

method.setPath(url);

int statusCode = httpclient.executeMethod(method);

System.out.println("Status: " + statusCode);

method.releaseConnection();

return method.getResponseBodyAsString();

}

以上是 JAVA-使用SSL证书和HTTPS的简单GET请求 的全部内容, 来源链接: utcz.com/qa/421829.html

回到顶部