我通过解析内部 HTML 页面构建了一个 Jsoup 文档,
public Document newDocument(String path) throws IOException {
Document doc = null;
doc = Jsoup.connect(path).timeout(0).get();
return new HtmlDocument<Document>(doc);
}
我想将 Jsoup 文档转换为我的org.w3c.dom.Document
我为此使用了一个可用的库DOMBuilder,但是在解析时我得到org.w3c.dom.Document
了 null。我无法理解这个问题,尝试搜索但找不到任何答案。
生成 W3C DOM 文档的代码:
Document jsoupDoc=factory.newDocument("http:localhost/testcases/test_2.html"));
org.w3c.dom.Document docu= DOMBuilder.jsoup2DOM(jsoupDoc);
谁能帮我解决这个问题?