如何从这个 html 页面的 div 类中获取特定标签?

发布于 2024-12-01 03:24:09 字数 320 浏览 1 评论 0原文

我正在尝试从此 html 页面 检索图像

网址图像位于网页上的版本框内。我将如何使用 JSoup 选择器方法获取它。

例如

Document doc = Jsoup.connect(url).get();
Element png  = doc.select(//What would the tag be?);

我知道如何设置它,但不知道如何检索标签。

I am trying to retrieve the image url in from this html page

The image is inside of the editions box on the webpage. How would i go about getting it using the JSoup selector method.

Such as

Document doc = Jsoup.connect(url).get();
Element png  = doc.select(//What would the tag be?);

I have an idea of how to set it up, just not how to retrieve the tag.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你与昨日 2024-12-08 03:24:09

doc.select("div.box-art").select("img").attr("abs:src"));

doc.select("div.box-art").select("img").attr("abs:src"));

故事↓在人 2024-12-08 03:24:09

docs 看起来像 doc.select(".box-art img" )应该可以解决问题。 (选择一个 img 元素,它是类 box-art 元素的子元素。)请注意,这可能会为您提供多个 imgs(如果 JSoup 支持)。

From the docs it looks like doc.select(".box-art img") should do the trick. (Select an img element which is the child of an element of class box-art.) Note that this could get you multiple imgs, (if JSoup supports that).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文