0

我正在使用jsoup。我想只获取这个url 的内容。我的意思是,我只想要事件选项卡的内容;不是其他页面内容。但现在我得到的内容是除此选项卡之外的整个页面的内容。我什至试图遵循这一点,但仍然没有成功。如果有人了解 Jsoup,则寻求某种更好的帮助。谢谢

4

1 回答 1

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());
于 2013-07-13T22:15:14.777 回答