如何使用Jsoup从android中的html中提取特定标签?

时间:2017-02-22 17:21:44

标签: android html jsoup

我必须使用jsoup从this link中提取(div id =" content-body-14269002-17342313)标记。我该怎么做?任何人都可以提供这样做的代码片段吗?

1 个答案:

答案 0 :(得分:1)

使用selector。该文档甚至提供了一个代码片段:

Document doc = Jsoup.parse(...);

Element div = doc.select("#content-body-14269002-17342313").first();