我对jsoup相当新,似乎无法从简单网站上的元素中获取值。试图访问id = lastTrade的元素及其对应的值,此时应为7088.930。
String url = "http://bitcointicker.co/";
Document doc = Jsoup.connect(url).get();
Element titleElement = doc.select("#lastTrade").first();
String title = titleElement == null ? null : titleElement.text();
System.out.println(title);