Jsoup - 按单元格条目搜索表,返回下一个单元格数据

时间:2013-04-15 10:21:34

标签: java html jsoup

我正在尝试解析以下嵌入式html:

<table class="repeated table name" width="100%"
    <tbody>
        <tr class="label">
          <td>Search Item</td>
        </tr>
        <tr class="row1">
           <td>Return Item </td>
        </tr>
     </tbody>
 </table>

搜索项的条目是一致的,所以我想搜索此条目,但我想返回以下行中的条目,返回项目。

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

这样做的一种方法是:

Element els = doc.select("td:containsOwn(search item)").parents().first();
Element nextSibling = els.nextElementSibling();

System.out.println(nextSibling.select("td").text());

我假设存在一种更优雅的方法,但这可以完成工作。