gpt4 book ai didi

java - jsoup select命令操作

转载 作者:太空宇宙 更新时间:2023-11-03 19:01:28 26 4
gpt4 key购买 nike

我是 Jsoup 的新手。

我可以使用选择命令

Elements media = doc.select("[src]");

如果您看到此内容:en.wikipedia.org/wiki/States_and_territories_of_India。因为我只想拥有印度各州的所有名字。但是还有其他表,当我执行 doc.select("area[title]"); 时我正在获取所有表格信息。所以我正在寻找是否在 select 中我可以说出它是如何只用于特定表的。

如果是这样的话,我认为 Jsoup 可能无法解决这个问题,你能告诉我如何实现吗

最佳答案

尝试这样的事情

Element indiaTable = doc.select("table").get(2); //India table is the third (index is 2) table on page
Elements myTds = indiaTable.select("td:eq(0)"); //The states are the first column

//or you can replace the two lines of code above with this

Elements myTds = doc.select("table.wikitable td:eq(0)");



for (Element td: myTds ) {
System.out.println(td.text());
}

关于java - jsoup select命令操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11946616/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com