我在执行编译文件时遇到问题。我将Hello.java
文件编译为
javac -cp \mypathto\jsoup.jar Hello.java
之后我无法执行它,因为我得到了“未定义的类Jsoup”错误。我尝试了不同的方法来添加类路径,但它仍然是相同的。任何的想法? Hello.java
import java.io.File;
import org.jsoup.*;
public class Hello {
/**
* @param args
*/
public static void main(String[] args)throws Exception {
try {
File input = new File("prove.xml");
Document doc = Jsoup.parse(input, "UTF-8");
//Document doc = Jsoup.connect("http://en.wikipedia.org/").get();
Elements descriptions = doc.select("div.details > p.description");
for (Element element : descriptions) {
System.out.println(element.ownText());
System.out.println("--------------");
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
答案 0 :(得分:-1)
尝试使用eclipse,netbeans,IDEA等IDE,以便于运行和调试