我正在寻找如何使用Jsoup
.
事实上,我曾尝试过以下代码:
Document document = Jsoup.connect("http://edition.cnn.com/2013/11/10/world/asia/philippines-typhoon-haiyan/index.html").get();
Element contents = document.select("#content").first();
System.out.println(contents.html());
System.out.println(contents.text());
我收到了这个错误:
Exception in thread "main" java.lang.NullPointerException
at com.clearforest.Test.main(Test.java:36)
请问您有什么想法吗?如何从文章中提取正确的文本。