我有以下代码应该从 HTML 文档中提取数据。我用过日食。它给了我两个错误(不过,此代码是从 JSoup 站点作为教程复制和粘贴的)。1) 文件和 2) 元素中的错误。我看不出这两种类型有什么问题。
导入 java.io.IOException;导入 java.net.MalformedURLException;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
public class TestClass
{
public static void main(String args[]) throws IOException
{
try{
File input = new File("/tmp/input.html");
Document doc = Jsoup.parse(input, "UTF-8", "http://example.com/");
Element content = doc.getElementById("content");
Elements links = content.getElementsByTag("a");
for (Element link : links) {
String linkHref = link.attr("href");
String linkText = link.text();
}
}//try
catch (Exception e){//Catch exception if any
System.err.println("Error: " + e.getMessage());
}//catch
}
}</i>