gpt4 book ai didi

java - 通过数据绑定(bind)使用 JSoup 在 HTML 页面上查找值

转载 作者:行者123 更新时间:2023-12-02 12:10:42 26 4
gpt4 key购买 nike

制作简单的比特币价格跟踪程序是为了好玩。到目前为止我已经有了

public static void main(String[] args) throws Exception {
String url = "https://bittrex.com/Market/Index?MarketName=USDT-BTC";
Document document = Jsoup.connect(url).get();

String price = document.select("#").text();
System.out.println("Price: " + price);
}

我需要将价格设置为此 HTML 标记内的值

<span data-bind="text: summary.displayLast()">4183.96889999</span>

这里严重困惑,我认为我错过了一些基本的东西,但无法弄清楚是什么,非常感谢任何帮助<3

最佳答案

由JavaScript编写的页面上的数据。 Jsoup 不执行 JS 代码,因此您会在标签中看到一个空白的 text() 。我认为你必须通过 URL https://bittrex.com/api/v2.0/pub/Markets/GetMarketSummaries 向 API 发送请求并解析 JSON 格式的响应。

关于java - 通过数据绑定(bind)使用 JSoup 在 HTML 页面上查找值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46572583/

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