我在StackOverflow上遇到了一些问题,询问有关使用Java使用xpath解析html的问题。

到目前为止,这是我找到的最佳答案。

但是看来DomSerializer在Java 11中不再可用。

如何在Java 11中使用DomSerializer

最佳答案

将以下依赖项添加到pom.xml

<dependency>
    <groupId>net.sourceforge.htmlcleaner</groupId>
    <artifactId>htmlcleaner</artifactId>
    <version>2.6.1</version>
</dependency>


要么

您可以从here下载htmlcleaner-2.6.1.jar

该jar(或工件)中具有DomSerializer类。

链接至阅读文档:http://htmlcleaner.sourceforge.net/doc/org/htmlcleaner/DomSerializer.html

07-28 07:58