gpt4 book ai didi

java - 使用 jsoup 从其他 h3/class 类中的类中提取 href

转载 作者:行者123 更新时间:2023-12-02 03:05:26 26 4
gpt4 key购买 nike

我正在尝试从 div.class yt-lockup-content 获取 href 属性,但它返回了 null 我在做什么错了?

<div class="yt-lockup-content">

<h3 class="yt-lockup-title "><a class="yt-uix-sessionlink yt-uix-tile-link spf-link yt-ui-ellipsis yt-ui-ellipsis-2" dir="ltr" title="Live :: PTV Sports Official Live Transmission" data-sessionlink="ei=K8uGWMHkGMWjcp7dhNAJ&amp;feature=c4-live-promo" href="/watch?v=8M00cos0d_0">Live :: PTV Sports Official Live Transmission</a></h3>

到目前为止我尝试过的代码:

rssDocument = Jsoup.connect("https://www.youtube.com/channel/UC0KT03NPnN-j4HGzetW9Lpw/featured").timeout(6000).ignoreContentType(true).parser(Parser.htmlParser()).get();
Elements firstH1 = rssDocument.select("div.yt-lockup-content > h3 > a");

我需要获取此网址:href="/watch?v=8M00cos0d_0"

最佳答案

一个选项可以是在选择后读取属性:

Document doc = Jsoup.parse(html);
Elements link = doc.select("div.yt-lockup-content > h3 > a");
String hrefAttribute = link.attr("href");
System.out.println(hrefAttribute);

输出:

/watch?v=8M00cos0d_0

关于java - 使用 jsoup 从其他 h3/class 类中的类中提取 href,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41819870/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com