Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このコードで html ページを解析したい < span class = bld >1.2456 RON </ span > Android で SOUP でテキスト "1.2456 RON" を取得したい。私は何をしたでしょうか?教えてください
私はこれがあなたがそれをする方法だと思います:
String html = "< span class = bld >1.2456 RON < / span >"; Elements e = new Jsoup(html).select(".bld"); System.out.println(e.get(0).text().toString());