Android使用Jsoup解析多个HTML表

时间:2014-01-05 22:36:55

标签: java android html parsing jsoup

我正在尝试解析互联网上的HTML页面,以使用Jsoup从其中的表中检索数据。但我要解析的页面包含多个表。我怎样才能做到这一点?这可能吗?

编辑: 这是我要解析的页面:

http://metudex.com/mobilepac/browse.php?SEARCH=calculus&kriter=X&Submit=Search

我想从带有图书信息的表中检索数据。

1 个答案:

答案 0 :(得分:1)

Document doc = Jsoup.connect("http://metudex.com/mobilepac/browse.php?SEARCH=calculus&kriter=X&Submit=Search").get();

Elements els = doc.select("td:has(span.briefcitDetail)"); //gets every td that has a child span with class briefcitDetail

for(Element el : els) {
    System.out.println("--" + el.text());
}