4

我使用下面的代码来获取一个aspx页面的返回响应码

HttpConnection connection 
     = (HttpConnection) Connector.open("http://company.com/temp1.aspx" 
                                       + ";deviceside=true");
connection.setRequestMethod(HttpConnection.GET);
connection.setRequestProperty(HttpHeaders.HEADER_CONNECTION, "close");
connection.setRequestProperty(HttpHeaders.HEADER_CONTENT_LENGTH, "0");
int resCode = connection.getResponseCode();

它工作正常。但是如果链接“ http://company.com/temp1.aspx ”自动重定向到另一个页面怎么办?假设“ http://noncompany.com/temp2 .​​aspx ”?如何获取从第二个链接(第一个链接重定向到的链接)返回的响应代码?是否有类似“跟随重定向”的东西来获取自动重定向到的页面的新响应?

提前致谢。

4

2 回答 2

8

我找到了解决方案,这里是为那些感兴趣的人准备的:

int resCode;
String location = "http://company.com/temp1.aspx";
while (true) {  
     HttpConnection connection = (HttpConnection) Connector.open(location + ";deviceside=true");
     connection.setRequestMethod(HttpConnection.GET);
     connection.setRequestProperty(HttpHeaders.HEADER_CONNECTION, "close");
     connection.setRequestProperty(HttpHeaders.HEADER_CONTENT_LENGTH, "0");
     resCode = connection.getResponseCode();
     if( resCode == HttpConnection.HTTP_TEMP_REDIRECT
          || resCode == HttpConnection.HTTP_MOVED_TEMP
          || resCode == HttpConnection.HTTP_MOVED_PERM ) {
          location = connection.getHeaderField("location").trim();
     } else {
          resCode = connection.getResponseCode();
          break;
     }
}
于 2010-01-12T11:42:27.423 回答
3

您需要在基于响应代码的 HTTP 重定向之后的循环中对 HttpConnection 进行编码。

响应中的 HTTP 标头“位置”应该为您提供一个新主机(也许它可以用来替换整个 URL)。

HttpConnection.HTTP_MOVED_TEMP并且HttpConnection.HTTP_MOVED_PERM是指示重定向的两个响应代码。

于 2010-01-12T11:40:58.737 回答