如何获取HTTPResponse的URL? 我试过了:
response.getHeaders("Locations")
但我获得了:
11-15 21:14:03.355: INFO/System.out(880): [Lorg.apache.http.Header;@43ea9568
答案 0 :(得分:3)
您可能正在考虑将客户端重定向到新的网址,在这种情况下,您要设置Location
而不是Locations
请求有URL,响应只是发送回客户端的数据包。
答案 1 :(得分:2)
试试这个
for(Header header : response.getHeaders("Location")) {
System.out.println("Location from connect:" + header.getValue());
}