如果包含属性,Jsoup将获取值

时间:2016-03-21 14:56:51

标签: java html jsoup

我想在表格中提取specefic标题的值,例如;

    <tr>
    <th colspan="8"> 
    <a href="/wiki/Hit_points" title="Hit points" class="mw-redirect">Hit points</a>
    </th>
    <td colspan="12"> 240</td>
    </tr>
<tr>
<th colspan="8"> <a href="/wiki/Aggressive" title="Aggressive" class="mw-redirect">Aggressive</a>
</th><td colspan="12"> Yes
</td></tr>

我希望能够获得值,例如;

如果title等于&#34;命中点&#34;  返回240

在上述情况中。

    package test;

import org.jsoup.Connection.Response;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Attribute;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;

public class topkek {

    public static void main(String[] args) {
        try {
        Response res = Jsoup.connect("http://2007.runescape.wikia.com/wiki/King_black_dragon").execute();
          String html = res.body();
          Document doc2 = Jsoup.parseBodyFragment(html);
          Element body = doc2.body();
          Elements tables = body.getElementsByTag("table");
          for (Element table : tables) {


              if (table.className().contains("infobox")==true) {
                  System.out.println(table.getElementsByAttribute("title").text());
                  break;
              }
          }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}

1 个答案:

答案 0 :(得分:1)

无需手动浏览文档,只需使用选择器:

response
   .parse()
   .select("th:has(a[title=\"Hit points\"]) ~ td")
   .text()

这会选择一个th元素,其中包含带有标题的嵌套a,并且有一个兄弟td元素,您可以使用text()

有关语法详细信息,请参阅here;有关在线沙箱,请参阅here

修改:如果要列出多个元素,可以使用以下内容:

document
    .select("th:has(a[title])")
    .forEach(e -> {
        System.out.println(e.text());
        System.out.println(((Element) e.nextSibling()).text());
    });