0
我試圖訪問美國國家航空航天局的web服務,使用Android 5.x一切正常,但是當使用Android 4.1.1時,異常是拋出:javax.net.ssl。 SSLException:由同級關閉的連接Android 4.1.1訪問美國航空航天局web服務時出現的ssl異常
OutputStream output = null;
url = new URL("https://firms.modaps.eosdis.nasa.gov/active_fire/text/Europe_24h.csv");
HttpsURLConnection https = (HttpsURLConnection) url.openConnection();
https.getInputStream(); <---- fails here
任何想法爲什麼?
謝謝! Android 4.1.1不支持Tls 1.1。 – maluk