http://jsoup.org/cookbook/extracting-data/attributes-text-html
http://www.mkyong.com/java/jsoup-html-parser-hello-world-examples/
タグからデータを取得するには、以下のコードを使用します。
<strong>Joint pain causes</strong>
public void getDataurl()
{
URL url;
try {
url = new URL("http://www.medicalmnemonics.com/cgi-bin/return_browse.cfm?discipline=Rheumatology%20%2F%20Allergy&browse=1");
Document doc = Jsoup.parse(url, 30000);
Elements elements = doc.select("strong");
for( Element e : elements )
{
System.out.println(e.text());
}
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}