如何在jsoup中搜索指定属性不存在的元素?

发布于 2024-12-03 17:46:24 字数 267 浏览 0 评论 0原文

我需要找到我指定的属性不存在的元素。像这样的东西:

Doc.select( "some_tag[attribute=""]" );

或类似的东西:

Doc.select( "some_tag[!attribute]" );

据我所知,jsoup本身不支持xpath,所以这是不可能的。

也许有一些技巧可以实现这一点?

I need to find element where attribute specified by me doesn't exist. Something like:

Doc.select( "some_tag[attribute=""]" );

or something similar to that like:

Doc.select( "some_tag[!attribute]" );

As I know natively jsoup doesn't support xpath, so it is out of the question.

Maybe there is some trick to accomplish that?

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

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

发布评论

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

评论(1

傲性难收 2024-12-10 17:46:24

解决此问题的一种方法是使用 :not 选择器。下面是选择所有没有 iddiv 的示例。

String url = "http://stackoverflow.com/questions/7377316/how-to-search-for-elements-where-specified-attribute-doesnt-exist-in-jsoup";
Document doc = Jsoup.connect(url).get();
//Select all divs without id
Elements divsWithoutid = doc.select("div:not([id])");
for (Element e : divsWithoutid) {
    //See ma, no id
    System.out.println("id = " + e.attr("id"));
}

One way to solve this is using the :not selector. Below is an example of selecting all divs without an id.

String url = "http://stackoverflow.com/questions/7377316/how-to-search-for-elements-where-specified-attribute-doesnt-exist-in-jsoup";
Document doc = Jsoup.connect(url).get();
//Select all divs without id
Elements divsWithoutid = doc.select("div:not([id])");
for (Element e : divsWithoutid) {
    //See ma, no id
    System.out.println("id = " + e.attr("id"));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文