我有一个 html 文件,我需要使用 jsoup 从中提取部门名称。
Document doc = Jsoup.connect("http://directory.binghamton.edu/directory/directory.deptlist").get();
System.out.println(doc);
Elements departments = doc.select("deptlist");
for (Element department : departments) {
System.out.println(department.text());
}
我做过类似的事情,但它不起作用。
查看源:http://directory.binghamton.edu/directory/directory.deptlist
谢谢你。