在我的Java代码中连接到针对特定网址的HTTP请求时,我遇到问题。例如: http://www.linkedin.com 。这将引发服务器不可用错误。 (TimeOutException)。
但是,如果responseCode是301或302,我希望我的连接将http请求重定向到Location标头值。

代码段:

  HttpURLConnection urlConn =(HttpURLConnection) new URL(url).openConnection(); //For eg : http://www.linkedin.com
  urlConn.setConnectTimeout(10*1000);
  urlConn.setReadTimeout(10*1000);

  boolean redirect = false;
  int status = urlConn.getResponseCode(); //No response. Throws exception
  if (status == HttpURLConnection.HTTP_MOVED_TEMP   || status == HttpURLConnection.HTTP_MOVED_PERM)
  {
    redirect = true;
  }

  String contenttype = urlConn.getContentType();

  if(redirect)
  {
    String newUrl = urlConn.getHeaderField("Location");//No I18N
    urlConn = (HttpURLConnection) new URL(newUrl).openConnection();
    urlConn.connect();
    contenttype = urlConn.getContentType();
  }

最佳答案

您的代码对我有用。显然,您面临一些网络问题。

http://www.linkedin.com在您的浏览器中工作吗?
如果是,则可以检查它是否正在使用某些代理。

10-06 03:43