我需要从网站上获取数据”https://www.arbatunity.com/index.php“,我想要网站右上角的数据,上面写着当前的市场利润。我需要一个可以更新的字符串值。
lc8prwob1#
使用jsoup库,这很简单:
Document doc = Jsoup.connect("https://www.arbatunity.com/index.php").get(); Elements elements = doc.select("#id_profit b"); String percent = "" for (Element e : elements) { percent = e.html(); } //percent holds the String you're looking for
1条答案
按热度按时间lc8prwob1#
使用jsoup库,这很简单: