Ich kann nicht verstehen, warum Java HttpURLConnection
einer HTTP-Umleitung von einem HTTP zu einer HTTPS-URL nicht folgt. Ich verwende den folgenden Code, um die Seite unter https://httpstat.us/ abzurufen :
import java.net.URL;
import java.net.HttpURLConnection;
import java.io.InputStream;
public class Tester {
public static void main(String argv[]) throws Exception{
InputStream is = null;
try {
String httpUrl = "http://httpstat.us/301";
URL resourceUrl = new URL(httpUrl);
HttpURLConnection conn = (HttpURLConnection)resourceUrl.openConnection();
conn.setConnectTimeout(15000);
conn.setReadTimeout(15000);
conn.connect();
is = conn.getInputStream();
System.out.println("Original URL: "+httpUrl);
System.out.println("Connected to: "+conn.getURL());
System.out.println("HTTP response code received: "+conn.getResponseCode());
System.out.println("HTTP response message received: "+conn.getResponseMessage());
} finally {
if (is != null) is.close();
}
}
}
Die Ausgabe dieses Programms ist:
Ursprüngliche URL: http://httpstat.us/301 Verbunden mit: http://httpstat.us/301 HTTP-Antwortcode empfangen: 301 Empfangene HTTP-Antwortnachricht: Permanent verschoben
Eine Anfrage an http://httpstat.us/301 gibt die folgende (verkürzte) Antwort zurück (was absolut richtig erscheint!):
HTTP/1.1 301 Moved Permanently
Cache-Control: private
Content-Length: 21
Content-Type: text/plain; charset=utf-8
Location: https://httpstat.us
Leider HttpURLConnection
folgt Java nicht der Weiterleitung!
Beachten Sie, dass , wenn Sie die ursprüngliche URL zu HTTPS ändern ( https://httpstat.us/301 ), Java wird die Umleitung folgen wie erwartet !?