Java'nın neden HttpURLConnection
bir HTTP'den HTTPS URL'ye bir HTTP yeniden yönlendirmesini takip etmediğini anlayamıyorum . Sayfayı https://httpstat.us/ adresinden almak için aşağıdaki kodu kullanıyorum :
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();
}
}
}
Bu programın çıktısı:
Orijinal URL: http://httpstat.us/301 Bağlandı: http://httpstat.us/301 Alınan HTTP yanıt kodu: 301 HTTP yanıt mesajı alındı: Kalıcı Olarak Taşındı
Http://httpstat.us/301 adresine yapılan bir istek , aşağıdaki (kısaltılmış) yanıtı döndürür (kesinlikle doğru görünüyor!):
HTTP/1.1 301 Moved Permanently
Cache-Control: private
Content-Length: 21
Content-Type: text/plain; charset=utf-8
Location: https://httpstat.us
Maalesef Java HttpURLConnection
yeniden yönlendirmeyi takip etmiyor!
HTTPS orijinal URL'yi (değiştirirseniz o Not https://httpstat.us/301 ), Java olacak beklendiği gibi yönlendirmeyi izlemek !?