标签: android html jsoup
我必须使用jsoup从this link中提取(div id =" content-body-14269002-17342313)标记。我该怎么做?任何人都可以提供这样做的代码片段吗?
答案 0 :(得分:1)
使用selector。该文档甚至提供了一个代码片段:
Document doc = Jsoup.parse(...); Element div = doc.select("#content-body-14269002-17342313").first();