选择文档不起作用

时间:2015-06-06 17:34:02

标签: java url jsoup

我正在尝试使用Jsoup来提取我的html代码中的链接,但我得到一个例外说:

  

org.jsoup.nodes.Document无法强制转换为javax.swing.text.Document

我无法弄清楚为什么会出错,因为我已经按照在线发现的教程。

我的代码是什么样的:

    String htmlCode = Jsoup.connect(urlToDownload).get().html();
    Document doc = (Document) Jsoup.parse(htmlCode);

对此事项的任何建议都表示赞赏。

1 个答案:

答案 0 :(得分:0)

此代码应该有效:

String htmlCode = Jsoup.connect(urlToDownload).get().html();
org.jsoup.nodes.Document doc = (org.jsoup.nodes.Document) Jsoup.parse(htmlCode);