在Geany中导入外部jar

时间:2012-09-16 16:46:31

标签: java jsoup

我在导入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

我做错了什么,我该如何解决?

1 个答案:

答案 0 :(得分:-1)

下载jar文件并将external jar放在某个\lib目录中,并将其添加到项目的类路径中。作为一种良好做法,使用org.jsoup.*

代替通配符导入org.jsoup.Document