2016-10-05 48 views
0

我使用Jsoup網頁包裝網頁,但它給了我一些我不需要的信息,有沒有辦法在java中的元素中使用某種正則表達式?如何使用Jsoup獲取某些數據?

我得到這個

<跨度ID = 「lblRefSellMsg」>¢559.41 </SPAN>(避免空間<>之間的空格)

我需要的信息是

559.41

最後我的代碼看起來像這樣

public class dato { 

public static void main(String [] args) throws IOException{ 
    String tasa = null; 
    Document d = Jsoup.connect("http://indi-eco.appspot.com/tcd").timeout(6000).get(); 
    Elements ele= d.select("span#lblRefSellMsg"); 
    System.out.print(ele); 

回答

2

調用text()方法您ElementElements對象:

System.out.print(ele.text());