我在导入 jar 文件并在Geany IDE中运行时遇到问题。这就是我所做的:我已经下载了 Jsoup。提取它并将 org 文件放在我的项目目录中。然后将其导入到我的源代码中:
import org.jsoup.*;// why this does not import all
/*
instead I need to import everything manually
import org.jsoup.Jsoup;
import org.jsoup.helper.Validate;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
*/
public class Crawler {
public static void main (String args[]) {
String html = "<html><head><title>First parse</title></head>"
+ "<body><p>Parsed HTML into a doc.</p></body></html>";
Document doc = Jsoup.parse(html);
}
}
当我尝试在 Geany 中编译它时,它给了我错误:
Crawler.java:7: cannot find symbol
symbol : class Document
symbol : class Document
symbol : class Document
我做错了什么,我该如何解决?