JSOUP:如何获得 Href?

2022-09-03 05:27:14

我有这个HTML代码:

 <td class="topic starter"><a href="http://www.test.com">Title</a></td>

我想提取“标题”和URL,所以我做了这个:

 Elements titleUrl = doc.getElementsByAttributeValue("class", "topic starter");
 String title = titleUrl.text();

这适用于标题,但对于URL,我尝试了以下内容:

 String url = titleUrl.html();
 String url = titleUrl.attr("a [href]");
 String url = titleUrl.attr("a[href]");
 String url = titleUrl.attr("href");
 String url = titleUrl.attr("a");

但是没有人工作,我无法获得URL。


答案 1

试试这个:

Element link = doc.select("td.topic.starter > a").first();
String url = link.attr("href");

首先选择元素,然后提取其属性 。ahref


答案 2