我正在使用jsoup。我想获得仅this网址的内容。我的意思是,我只想要突发事件标签的内容;不是其他页面内容。但是现在我得到的内容是除了这个标签之外的整页内容。我试图遵循this,但仍然没有成功。如果有人了解Jsoup的话,寻找更好的帮助。 感谢
答案 0 :(得分:0)
这应该可以获取所需的结果
Document document = Jsoup.connect(
"http://131940.qld.gov.au/Road-Conditions.aspx?tab=incident#incidents")
.userAgent(
"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36"
).timeout(0) .followRedirects(true) .execute().parse();
System.out.println(document.select("#incidents").html());