web-dev-qa-db-ja.com

xPathをJSoupクエリに変換する

XPathからJSoupへのコンバーターを知っている人はいますか? Chromeから次のxPathを取得します。

 //*[@id="docs"]/div[1]/h4/a

それをJsoupクエリに変更したいと思います。パスには、参照しようとしているhrefが含まれています。

15
Josh

これは手動で変換するのは非常に簡単です。

このようなもの(テストされていません)

document.select("#docs > div:eq(1) > h4 > a").attr("href");

ドキュメンテーション:

http://jsoup.org/cookbook/extracting-data/selector-syntax


コメントからの関連質問

ここで最初の結果のhrefを取得しようとしています:cbssports.com/info/search#q=fantasy%20tom%20brady

コード

Elements select = Jsoup.connect("http://solr.cbssports.com/solr/select/?q=fantasy%20tom%20brady")
        .get()
        .select("response > result > doc > str[name=url]");

for (Element element : select) {
    System.out.println(element.html());
}

結果

http://fantasynews.cbssports.com/fantasyfootball/players/playerpage/187741/tom-brady
http://www.cbssports.com/nfl/players/playerpage/187741/tom-brady
http://fantasynews.cbssports.com/fantasycollegefootball/players/playerpage/1825265/brady-lisoski
http://fantasynews.cbssports.com/fantasycollegefootball/players/playerpage/1766777/blake-brady
http://fantasynews.cbssports.com/fantasycollegefootball/players/playerpage/1851211/brady-foltz
http://fantasynews.cbssports.com/fantasycollegefootball/players/playerpage/1860955/brady-earnhardt
http://fantasynews.cbssports.com/fantasycollegefootball/players/playerpage/1673397/brady-amack

開発者コンソールのスクリーンショット-URLを取得

enter image description here

13
MariuszS

Google Chromeバージョン47.0.2526.73m(64ビット)を使用しており、セレクターを直接コピーできるようになりましたJSoupと互換性のあるパス

Chrome with Selector option



スクリーンショットの要素のコピーされたセレクター_span.com_は
#question > table > tbody > tr:nth-child(1) > td.postcell > div > div.post-text > pre > code > span.com

12
zackygaurav

次のXPathとJsoupをテストしましたが、機能します。

例1:

[XPath]

//*[@id="docs"]/div[1]/h4/a

[JSoup]

document.select("#docs > div > h4 > a").attr("href");

例2:

[XPath]

//*[@id="action-bar-container"]/div/div[2]/a[2]

[JSoup]

document.select("#action-bar-container > div > div:eq(1) > a:eq(1)").attr("href"); 
1
Sivitry

XsoupとJsoupを使用したスタンドアロンスニペットは次のとおりです。

import Java.util.List;

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;

import us.codecraft.xsoup.Xsoup;

public class TestXsoup {
    public static void main(String[] args){

            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);

            List<String> filasFiltradas = Xsoup.compile("//tr/td/text()").evaluate(document).list();
            System.out.println(filasFiltradas);

    }
}

出力:

[a, b]

含まれるライブラリ:

xsoup-0.3.1.jar jsoup-1.103.jar

1
Om Prakash Sao

あなたが望むものに依存します。

Document doc = JSoup.parse(googleURL);
doc.select("cite") //to get all the cite elements in the page

doc.select("li > cite") //to get all the <cites>'s that only exist under the <li>'s

doc.select("li.g cite") //to only get the <cite> tags under <li class=g> tags


public static void main(String[] args) throws IOException {
    String html = getHTML();
    Document doc = Jsoup.parse(html);
    Elements elems = doc.select("li.g > cite");
    for(Element elem: elems){
        System.out.println(elem.toString());
    }
}
0

XpathをJSoup固有のセレクターに変換する必要は必ずしもありません。

代わりに、JSoupに基づいてXpathをサポートするXSoupを使用できます。

https://github.com/code4craft/xsoup

これは、ドキュメントのXSoupを使用した例です。

@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));
}
0
Kotlinboy