web-dev-qa-db-ja.com

jsoupはxpathをサポートしていますか?

Jpathへのxpathサポートの追加に関連する進行中の作業があります https://github.com/jhy/jsoup/pull/8

  • 機能していますか?
  • どうすれば使用できますか?
32
gguardin

JSoupXPathをまだサポートしていませんが、 XSoup - "Jsoup with XPath"

以下は、プロジェクトのGithubサイト( link )から引用した例です。

@Test
public void testSelect() {

    String html = "<html><div><a href='https://github.com'>github.com</a></div>" +
            "<table><tr><td>a</td><td>b</td></tr></table></html>";

    Document document = Jsoup.parse(html);

    String result = Xsoup.compile("//a/@href").evaluate(document).get();
    Assert.assertEquals("https://github.com", result);

    List<String> list = Xsoup.compile("//tr/td/text()").evaluate(document).list();
    Assert.assertEquals("a", list.get(0));
    Assert.assertEquals("b", list.get(1));
}

XSoupでサポートされているXPathの機能と式のリストもあります。

11
ollo

まだですが、プロジェクト JsoupXpath で作成されています。たとえば、

String xpath="//div[@id='post_list']/div[./div/div/span[@class='article_view']/a/num()>1000]/div/h3/allText()";
String doc = "...";
JXDocument jxDocument = new JXDocument(doc);
List<Object> rs = jxDocument.sel(xpath);
for (Object o:rs){
    if (o instanceof Element){
        int index = ((Element) o).siblingIndex();
        System.out.println(index);
    }
    System.out.println(o.toString());
}
1
xiaohuo