Element tables = doc.select("table")
Elements myTds = tables.select("td:eq(0)");
....。
thetext=td.text();
thehref=td.getElementsByTag("a[href]");
HTMLページからテーブルを読んでいます。読みたい
<td>
<a href="student-profiles/andy.html">Andy</a>
</td>
アンディと学生のプロフィールを読みたいです。thetextはAndyを印刷しています。どうすればhrefを取得できますか?私はいくつかのことを試しましたが、できませんでした。