我想用这段代码解析html页面< span class = bld> 1.2456 RON< / span>我希望在Android中使用SOUP获取文本“1.2456 RON”。我会做什么?请告诉我
答案 0 :(得分:0)
我认为你就是这样做的:
String html = "< span class = bld >1.2456 RON < / span >";
Elements e = new Jsoup(html).select(".bld");
System.out.println(e.get(0).text().toString());