タグ内のテキストを取得しようとしています。その ID は「lblCompra」と「lblVenta」です。
Document doc = Jsoup.connect("http://www.bccr.fi.cr//").get();
Element compra = doc.getElementById("lblCompra");
Element venta = doc.getElementById("lblVenta");
System.out.println(compra);
System.out.println(venta);
しかし、私が得るのは、必要のないテキストの束です。出力は次のとおりです。
<span id="lblCompra"> <img src="images/waiting.gif" alt="cargando" /> </span>
<span id="lblVenta"> <img src="images/waiting.gif" alt="cargando" /> </span>
私が取得する必要があるのは、「400.0」や「450.0」などです。