java - 如何从 Java 应用程序访问 HTTPS URL

标签 java ssl https jsse httpsurlconnection

我知道这是一个非常基本的问题,但我无法找到解决此问题的方法。我有一个具有 main 方法的 java 类。在那个方法中,我尝试访问一个 https url,如下所示:

package helloworld;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;

import javax.net.ssl.HttpsURLConnection;

public class ConnectHttps
{
public static void main(String[] argsd)
{
    System.out.println("***************Https testing started **************");
    try
    {
        URL u = new URL("https://localhost:8443/myapp/test");
        HttpsURLConnection http = (HttpsURLConnection) u.openConnection();
        http.setAllowUserInteraction(true);
        http.setRequestMethod("GET");
        http.connect();

        InputStream is = http.getInputStream();
        BufferedReader reader = new BufferedReader(new InputStreamReader(is));
        StringBuilder stringBuilder = new StringBuilder();
        String line = null;
        while ((line = reader.readLine()) != null)
        {
            stringBuilder.append(line
                + "\n");
        }
        System.out.println(stringBuilder.toString());
        System.out.println("***************Https testing completed **************");
    }
    catch (IOException e)
    {
        System.out.println("***************Https testing failed **************");
        e.printStackTrace();
    }
}

}

在执行这个程序时,我得到的输出是:

***************Https testing started **************
***************Https testing failed **************
javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No name matching localhost found
at sun.security.ssl.Alerts.getSSLException(Alerts.java:192)
at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1886)
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:276)
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:270)
at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1341)
at sun.security.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:153)
at sun.security.ssl.Handshaker.processLoop(Handshaker.java:868)
at sun.security.ssl.Handshaker.process_record(Handshaker.java:804)
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1016)
at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1312)
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1339)
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1323)
at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:515)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:153)
at helloworld.ConnectHttps.main(ConnectHttps.java:59)

我想我在这里犯了一个非常基本的错误。

我正在使用 JDK 1.7.0_25。

最佳答案

java.net.ConnectException: Connection timed out: connect

这实际上与 SSL/TLS 无关。相反,您的客户端根本无法连接到服务器(至少在合理的时间内无法连接)。

很可能有防火墙阻止您建立此类连接。

您可能必须通过代理,在这种情况下,HttpsURLConnection 应考虑设置 https.proxyHosthttps.proxyPort 系统属性

关于java - 如何从 Java 应用程序访问 HTTPS URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19436110/

相关文章:

java.lang.OutOfMemory错误: Java heap space when reading from a txt file and writing to an xlsx file

java - 非阻塞异步 mongo java/scala 驱动程序可以阻塞线程——如何处理?

java - 如何使用 Jackson 反序列化动态字段?

ruby - 如何在 Ruby 中设置 SSLContext 选项

azure - 从包含私钥的crt和txt中获取pfx

http - 我该如何设置才能让人们访问我的 https 网站,而不是 http 版本?

java - 如何使用流修改java 8中列表每个元素中的字段

php - 使用 .htaccess 和 mod_rewrite 强制 SSL/https

java - Java如何绕过CertificateException?

php - 如何将 PHP5 SoapClient::SoapClient() 与客户端证书一起使用?