このページからレート値(現在は 0.1501)のみを選択する方法を考えています。
public class Currency
{
public void test() throws IOException
{
Document doc = Jsoup.connect("http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.xchange%20where%20pair%20in%20(%22SEKUSD%22)&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys").get();
Elements value = doc.select("rate");
System.out.print(value);
}
public static void main(String args[]) throws IOException
{
Currency derp = new Currency();
derp.test();
}
}