如何使用Jsoup获取某些数据?

时间:2016-10-05 17:25:22

标签: java regex jsoup

我使用Jsoup截取网页,但它给了我一些我不需要的信息,有没有办法在java中的元素中使用某种正则表达式?

我明白了

  

< span 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);

1 个答案:

答案 0 :(得分:2)

text()Element对象上调用Elements方法:

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