gpt4 book ai didi

java - jsoup 表获取特定元素

转载 作者:行者123 更新时间:2023-12-01 15:12:32 24 4
gpt4 key购买 nike

Document doc = Jsoup.connect(studentprofiles).get();
Element tables = doc.select("table");
Elements myTdsstudent = tables.select("tr td:eq(1)");

我能够在 eq(1) 中逐个获取所有详细信息。

在示例中:

Table:    
GK 99
NS 88
PS 55

当我执行 eq(0) 时,我在 HTML 表中得到 GK,NS,PS。当我执行 eq(1) 时,我得到 99 88 55。

有没有办法让我可以使用 JSOUP 来阅读

gk=99
ns=88
PS=55

现在我得到了 2 个不同的字符串数组。

最佳答案

Elements myTdsstudent = tables.select("tr");

现在迭代 myTdsstudent 并使用它

for (Element myTdsstudentIterator: myTdsstudent) {
System.out.println(myTdsstudentIterator.select("td:eq(0)") + " = " + myTdsstudentIterator.select("td:eq(1)"));
}

关于java - jsoup 表获取特定元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12136101/

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