gpt4 book ai didi

java - 如何从主页(jsoup)获取特定数据,用于后面的if子句(Java,Eclipse)

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

我有一个主页,我们想要跟踪该位置是否为空/空闲。该网站是从外部来源作为服务提供的。

我已经通过应用程序在主页上登录,当我检查整个文档文档时,它显示了所有内容,并且还包括我想要的内容。

现在我尝试指定我想要的数据(UID 和状态),但我不知道该怎么做。

我不知道该选择什么,

Elements data = doc.select("a");

我尝试过使用 div.tiles 和 div.tableauDeBoard 但没有成功。

以下是预期输出:

2652 免费2653 免费等等

我希望我做的一切都是正确的,这是我第一次在这里发帖。

String URL = "..." //URL in there to shorten code
Document doc = Jsoup.connect(URL).get();
Elements data = doc.select("a");
System.out.println(data.outerHTML());
<div id="tableauDeBoard" class="porlet-body" style="min-height: 40px;">
<div class="tiles">
<a href="..."
class="tile-v2 undefined popovers" data-content="Status : free<hr>time : 4h22<hr>last change : 05.11.2019 at 18:46<hr>UID : 2652<hr> Typ : P<hr>connection OK" data-html="true" data-placement="auto" data-container="body" data-trigger="hover" data-original-title="" title="">
<div class="tile-code-ville"></div>
<div class="tile-id-automate">2652</div>
<div class="tile-infos"><span class="tile-icon-transmission">
<img src="....png">
</span><span class="tile-icon-jauge"></span></div></a>
Same code 7 time with different UID/Time/Status
</div>

最佳答案

您可以尝试以下方法

import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;

public class TestJsoup{
public static void main(String[] args) throws InterruptedException {

StringBuilder html = new StringBuilder();
html.append("<div id=\"tableauDeBoard\" class=\"porlet-body\" style=\"min-height: 40px;\">");
html.append(" <div class=\"tiles\">");
html.append(" <a href=\"...\"");
html.append(
"class=\"tile-v2 undefined popovers\" data-content=\"Status : free<hr>time : 4h22<hr>last change : 05.11.2019 at 18:46<hr>UID : 2652<hr> Typ : P<hr>connection OK\" data-html=\"true\" data-placement=\"auto\" data-container=\"body\" data-trigger=\"hover\" data-original-title=\"\" title=\"\">\r\n"
+ "");
html.append("<div class=\"tile-code-ville\"></div>");
html.append("<div class=\"tile-id-automate\">2652</div>\r\n");
html.append(" <div class=\"tile-infos\"><span class=\"tile-icon-transmission\">");
html.append("<img src=\"....png\">\r\n");
html.append("</span><span class=\"tile-icon-jauge\"></span></div></a>\r\n");
html.append("document.write(<style type='text/css'>div,iframe { top: 0; position:absolute; }</style>');");
html.append("</div>");
html.append("</head><body></body> </html>");
Document doc = Jsoup.parse(html.toString());

Elements allClassElements = doc.getElementsByClass("tiles"); //fetching the elements of the class "tiles"
for (Element ele : allClassElements) {
Elements links = ele.getElementsByTag("a"); // Finding the anchor tag which contains the required data
for (Element link : links) {
String str = link.attr("data-content"); // to get the status value

//Without Regex
String oo = str.substring(str.indexOf(":") + 1, str.indexOf("<hr>"));
System.out.println(link.text() + " " + oo.replaceAll("\\s+", "")); //link.text contains id value

// Using Regex
Pattern p = Pattern.compile("\\:.*?\\<");
Matcher m = p.matcher(str);
if (m.find())
System.out.println(link.text() + " "
+ m.group().subSequence(1, m.group().length() - 1).toString().replaceAll("\\s+", ""));

}

}
}
}

控制台输出:

2652 free
2652 free

有关使用 Jsoup 获取数据的更多详细信息,请尝试访问 jsoup 食谱
https://jsoup.org/cookbook/extracting-data/attributes-text-html

关于java - 如何从主页(jsoup)获取特定数据,用于后面的if子句(Java,Eclipse),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58721275/

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