301-redirect、width = 168、height = 172

`HttpURLConnection`のフォローリダイレクトは単に指標に過ぎません。実際には、実際のhttpリダイレクトを手助けすることはできませんが、手動で処理する必要があります。

URL obj = new URL(url);
HttpURLConnection conn = (HttpURLConnection) obj.openConnection();
conn.setInstanceFollowRedirects(true); //you still need to handle redirect manully.
HttpURLConnection.setFollowRedirects(true);

1. Java Httpのリダイレクトの例

サーバーが元のURLから別のURLにリダイレクトされた場合、応答コードは

301:Moved Permanently

または

302:Temporary Redirect

になります。また、HTTPリダイレクトヘッダーの ”

Location

“ヘッダーを読むことで、新しいリダイレクトURLを取得できます。

たとえば、通常のHTTPツイッターWebサイト(http://www.twitter.com)にアクセスすると、自動的にHTTPSツイッターWebサイト(http://www.twitter.com[

https://www.twitter.com

])にリダイレクトされます]。

HttpRedirectExample – 完全なJavaのリダイレクトの例に従います。コメントを見てください。

package com.mkyong.http;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

public class HttpRedirectExample {

  public static void main(String[]args) {

    try {

    String url = "http://www.twitter.com";

    URL obj = new URL(url);
    HttpURLConnection conn = (HttpURLConnection) obj.openConnection();
    conn.setReadTimeout(5000);
    conn.addRequestProperty("Accept-Language", "en-US,en;q=0.8");
    conn.addRequestProperty("User-Agent", "Mozilla");
    conn.addRequestProperty("Referer", "google.com");

    System.out.println("Request URL ... " + url);

    boolean redirect = false;

   //normally, 3xx is redirect
    int status = conn.getResponseCode();
    if (status != HttpURLConnection.HTTP__OK) {
        if (status == HttpURLConnection.HTTP__MOVED__TEMP
            || status == HttpURLConnection.HTTP__MOVED__PERM
                || status == HttpURLConnection.HTTP__SEE__OTHER)
        redirect = true;
    }

    System.out.println("Response Code ... " + status);

    if (redirect) {

       //get redirect url from "location" header field
        String newUrl = conn.getHeaderField("Location");

       //get the cookie if need, for login
        String cookies = conn.getHeaderField("Set-Cookie");

       //open the new connnection again
        conn = (HttpURLConnection) new URL(newUrl).openConnection();
        conn.setRequestProperty("Cookie", cookies);
        conn.addRequestProperty("Accept-Language", "en-US,en;q=0.8");
        conn.addRequestProperty("User-Agent", "Mozilla");
        conn.addRequestProperty("Referer", "google.com");

        System.out.println("Redirect to URL : " + newUrl);

    }

    BufferedReader in = new BufferedReader(
                              new InputStreamReader(conn.getInputStream()));
    String inputLine;
    StringBuffer html = new StringBuffer();

    while ((inputLine = in.readLine()) != null) {
        html.append(inputLine);
    }
    in.close();

    System.out.println("URL Content... \n" + html.toString());
    System.out.println("Done");

    } catch (Exception e) {
    e.printStackTrace();
    }

  }

}


出力

Request URL ... http://www.twitter.com
Response Code ... 301
Redirect to URL : https://twitter.com/URL Content...
<!DOCTYPE html><!--[if IE 8]><html class=//twitter.com url content...

HTTPリダイレクトを処理するためのより良い方法があれば、共有してください:)

参考文献

Android JavaDoc、その他の例]。

http://ja.wikipedia.org/wiki/List


of

HTTP

header

fields[Wiki:リスト

HTTPヘッダーフィールド]

リンク://タグ/http/[http]リンク://タグ/java-network/[javaネットワーク]