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>
我想阅读安迪和学生档案。正文正在打印安迪。我怎样才能得到href?我尝试了几件事,但不能。