java.net.ProtocolException:服务器重定向次数过多(20)

问题描述 投票:0回答:2

我有这个代码:

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import javax.net.ssl.HttpsURLConnection;

public class Demo2 {

    public static void main(String[] args) {

        try {

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

    URL obj = new URL(url);
    HttpURLConnection conn = (HttpURLConnection) obj.openConnection();
    conn.setReadTimeout(5000);
    conn.addRequestProperty("Accept-Language", "es-ES,es;q=0.8");
    conn.addRequestProperty("User-Agent", "Mozilla");
    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) {
    System.out.println("Redireccionando...");
    // 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");
    System.out.println("Galletas: " + cookies);

    // open the new connnection again
    conn = (HttpsURLConnection) new URL(newUrl).openConnection();
    conn.setFollowRedirects(true);
    conn.setRequestProperty("Cookie", cookies);
    conn.addRequestProperty("Accept-Language", "es-ES,es;q=0.8");
    conn.addRequestProperty("User-Agent", "Mozilla");       

    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();
}

  }

}

结果是:

请求网址...“http://www.web1.com”回复代码... 302 Redireccionando ... Galletas:07c18a1bea3520c44535aafeeea31dec07a36313; path = /重定向到URL:“https://www.web2.com”java.net.ProtocolException:服务器在sun.net上的sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1635)重定向了太多次(20)。 Depr2.main上的www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254)(Demo2.java:58)

问题是什么?我要疯了

java httpurlconnection httpsurlconnection
2个回答
0
投票

我面临同样的问题。即使我花了很多时间来解决这个问题。我发现问题正在发生之后:当您调用某些JSON服务时,有时服务可能会返回原始格式或格式的数据,这可能不是典型的application/json。您的.openConnection()InputStreamReader可能无法读取响应标头和JSON数据。

要解决此问题,我尝试了以下操作,它对我有用:

  • 使用HttpClient httpClient = new DefaultHttpClient();而不是(HttpURLConnection) obj.openConnection();
  • 设置允许循环重定向:httpClient.getParams().setParameter(ClientPNames.ALLOW_CIRCULAR_REDIRECTS, true);
  • 设置以下帖子标题非常重要: httpPost.setHeader("charset","utf-8"); httpPost.setHeader("Accept", "application/json"); httpPost.setHeader("Accept-Language","en-US,en;q=0.8"); httpPost.setHeader("Content-Type", "application/json;charset=UTF-8");

使用StringEntity使用UTF-8读取输入流:

httpresponse.getEntity().getContent(),HTTP.UTF_8), 8);

以下是适用于我的示例代码:

HttpClient httpClient = new DefaultHttpClient();
String url =http://....; httpClient.getParams().setParameter(ClientPNames.ALLOW_CIRCULAR_REDIRECTS, true); 
HttpPost httpPost = new HttpPost(url); 
httpPost.setHeader("Content-Type", "application/json");
httpPost.setHeader("charset","utf-8");
httpPost.setHeader("Accept", "application/json");
httpPost.setHeader("Accept-Language","en-US,en;q=0.8");
httpPost.setHeader("Content-Type", "application/json;charset=UTF-8");
//or you can try httpPost.setContentType("application/x-www-form-urlencoded");
StringEntity requestBody = new StringEntity(jsonBody);
requestBody.setContentType("application/json");
httpPost.setEntity(requestBody);
HttpResponse httpresponse = httpClient.execute(httpPost); 
org.apache.http.StatusLine statusRespons = httpresponse.getStatusLine(); 
if (statusRespons.getStatusCode() > 201)
{
    errorText = statusRespons.getStatusCode() + " : " + statusRespons.toString()  + " : " +statusRespons.getReasonPhrase() ;
}
BufferedReader buffer = new BufferedReader(new InputStreamReader(httpresponse.getEntity().getContent(),HTTP.UTF_8), 8);
String s = "";
while ((s = buffer.readLine()) != null) 
    jsonString.append(s);

希望这有助于你吗?


0
投票

我也遇到了同样的问题和这个修复,帮助我克服它。

在致电openConnection();之前,请使用以下内容:

HttpURLConnection.setFollowRedirects(false);
© www.soinside.com 2019 - 2024. All rights reserved.