jsoup 使用总结1--添加header
大部分时候,我们使用jsoup解析网页的是否都是直接Jsoup.connect(url); 孰不知,我们可以添加header,例如 Host, Referer 等
下面是代码:
Document doc = Jsoup.connect("http://www.example.com/abs/abc.html") .header("Host", "www.example.com")
.header("Referer", "www.example.com/index.html")
.timeout(0).get();
另外推荐阅读jsoup的官网文档,我80%的问题都在官网找到了方法。