jsoup检查表是否存在

时间:2012-10-04 05:34:00

标签: java jsoup

我有

元素列表= doc.select(“table”)。get(0);

有些时候没有桌子,但我仍然这样做,所以我

Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 0, Size: 0

如何摆脱这种异常? 没有大小,因为这是元素

1 个答案:

答案 0 :(得分:5)

Elements 是从select中返回的对象。

 Elements tables = doc.select("table");

它有一个size方法。 所以你可以打电话:

 tables.size();