让我们考虑以下例子:
public static void main(String [] args) {
String example = "<h1></h1>";
Document doc = Jsoup.parse(example);
System.out.println(doc.html());
}
它的输出是:
<html>
<head></head>
<body>
<h1></h1>
</body>
</html>
如何获得这样的输出:
<h1></h1>
我不想要HTML,头部和身体。我想解析和编辑隔离的 HTML元素。