当我使用JSOUP获取网站的响应时,我可以捕获除LOCATION之外的所有标题。
使用JSOUP或其他一些html解析器有一些方法可以捕获响应头“LOCATION”的值吗?
答案 0 :(得分:2)
您可以使用JSoup阅读位置。
真实示例
Connection.Response response = Jsoup
.connect("http://tvnwarszawa.pl/d")
.method(Connection.Method.POST)
.followRedirects(false)
.execute();
System.out.println(response.header("Location"));
<强>输出强>
http://tvnwarszawa.tvn24.pl/d
详细了解位置:http://en.wikipedia.org/wiki/HTTP_location
也许您对url()感兴趣?
System.out.println(response.url());