我在这里遇到问题,我有一些在1.7及更高版本中可以正常工作的代码,但是一旦切换到1.6,我总是会收到此错误:

java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168)


我认为问题出在HttpsURLConnection上,但我不知道是什么。这是我初始化HttpsURLConnection的方法:

 // create URL Object from String
 URL url = new URL(https_url);
 // set IP Adress for X509TrustManager
 caTrustManager.setHostIP(url.getHost());
 TrustManager[] trustCerts = new TrustManager[]{
     caTrustManager
 };
 SSLContext sc = SSLContext.getInstance("SSL");
 sc.init(null, trustCerts, new java.security.SecureRandom());
 //'ArrayList' where the data is saved from the URL
 ArrayList data = null;
 // open URL
 HttpsURLConnection httpsVerbindung = (HttpsURLConnection) url.openConnection();
 httpsVerbindung.setSSLSocketFactory(sc.getSocketFactory());
 // Read the data from the URL
 data = PerformAction.getContent(httpsVerbindung);


这是发生错误的Methode:Class = PerformActionMethode = getContent(HttpsURLConnection con):

public static ArrayList getContent(HttpsURLConnection con) {

    // The ArrayList where the information is saved
    ArrayList infoFromTheSite = new ArrayList();
    // check if connection not null
    if (con != null) {

        BufferedReader br = null;
        try {
            // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
            // !!!! **Error happens Here** !!!!
            // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
            br = new BufferedReader(new InputStreamReader(con.getInputStream()));

            String input;
            // go through all the Data
            while ((input = br.readLine()) != null) {
                // save to ArrayList
                infoFromTheSite.add(input);
            }

        } catch (IOException ex) {
            Logging.StringTimeFail("Fehler mit dem BufferedReaders");
            ex.printStackTrace();
        } finally {
            if (br != null) {
                try {
                    br.close();
                } catch (IOException ex) {
                    Logger.getLogger(PerformAction.class.getName()).log(Level.SEVERE, null, ex);
                }
            }
        }

    }

}



我希望我的问题很清楚并且有人理解我:P
感谢您抽出宝贵的时间来解决我的问题!

编辑
因此,我通过Wireshark发现失败的数据包比成功的数据包小(157字节=失败; 208字节= true)
我在想也许他不加密IP数据包中的数据,或者不发送证书。
我还注意到SSL握手成功,但是一旦客户端请求数据,它就会失败,并且服务器会发出以下提示:

Connection Reset


(是的,服务器正在调用“连接重置”)
我真的在这里迷路了:D

最佳答案

正如@Robert在评论中提到的:


  如果与您通信的服务器得到了安全维护
  Java 1.6会出现问题,因为它仅支持
  不安全的SSL / TLS版本(不支持TLS 1.1和1.2,仅
  过时的密码)。
  
  修复:升级您的Java版本。


如果无法升级Java版本,则可以使用Apache HTTPClient。

10-07 15:55