未发送位置标头时从http响应中获取URL

时间:2010-11-02 01:54:08

标签: java http httpclient

与http http://forecast.weather.gov/zipcity.php进行通信时,我需要获取从请求生成的URL。

我已从http响应消息中打印出标题及其值,但没有位置标题。我如何获得此URL? (我正在使用HttpClient)

1 个答案:

答案 0 :(得分:12)

它应该类似于:

HttpClient client = new DefaultHttpClient();
HttpParams params = client.getParams();
HttpClientParams.setRedirecting(params, false);
HttpGet method = new HttpGet("http://forecast.weather.gov/zipcity.php?inputstring=90210");
HttpResponse resp = client.execute(method);
String location = resp.getLastHeader("Location").getValue();
编辑:我不得不进行一些小调整,但我测试了以上工作。