我是 JSoup 的新用户。我想href
从 html 中提取值。
例如:
String html = "<p>An <a href='http://exa'mple.com'><b>example</b></a> link.</p>";
Document doc = Jsoup.parse(html);
Element link = doc.select("a").first();
String linkHref = link.attr("href");
我得到的输出为"http://exa"
,但我需要输出为"http://exa'mple.com"
(href 中的原始文本)。link.outerHtml()
正在提供一些不同的文本。
我无法更改 HTML。HTML 是用户的输入。