如何使用其html内容在Jsoup中选择元素?

时间:2019-04-19 14:39:23

标签: java html jsoup

我想使用其html内容在Jsoup中选择一个元素。

示例:位置:         

我该怎么做。我找不到直接合适的选择器方法。有什么解决方法吗?

1 个答案:

答案 0 :(得分:1)

使用Jsoup库,您可以使用名称,ID或元素类从html的值中进行解析。

String html = "<html><head><title>Title</title></head> <body><div id='location'>Mumbai, India</div></body></html>";
Document document= Jsoup.parse(html);
String content = document.getElementById("location").outerHtml();

快乐编码:-)