gpt4 book ai didi

java - 使用java读取网页的检查元素数据

转载 作者:行者123 更新时间:2023-11-30 02:39:59 25 4
gpt4 key购买 nike

我有一个要求。我正在从动态网页读取文件,并且我从网页中需要的值位于

<td>

,当我检查这个元素时这是可见的。所以我的问题是,是否可以使用 java 打印检查元素中包含的数据?

最佳答案

使用JSOUP 。这是cookbook

ArrayList<String> downServers = new ArrayList<>();
Element table = doc.select("table").get(0);
Elements rows = table.select("tr");

for (int i = 1; i < rows.size(); i++) {
Element row = rows.get(i);
Elements cols = row.select("td");

// Use cols.get(index) to get the data from td element
}

关于java - 使用java读取网页的检查元素数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42062035/

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