检查Java中是否存在XML标签

发布于 2024-10-04 14:18:26 字数 326 浏览 1 评论 0原文

我正在解析 XML javax.xml,但我想知道子节点上是否存在标签例如

<tag>
 <child>
  <special_tag>Special</special_tag>
  <normal_tag>Normal</normal_tag>
 </child>
 <child>
  <normal_tag>Normal</normal_tag>
 </child>
</tag>

我想知道哪个子节点有特殊标签,哪个没有

I am parsing an XML javax.xml, but i want to know whether a tag exist on a child node For example

<tag>
 <child>
  <special_tag>Special</special_tag>
  <normal_tag>Normal</normal_tag>
 </child>
 <child>
  <normal_tag>Normal</normal_tag>
 </child>
</tag>

I am trying to know which Child has Special tag and which doesnt

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

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

发布评论

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

评论(3

醉梦枕江山 2024-10-11 14:18:26

使用 xPath:

//child[special_tag]

Using xPath:

//child[special_tag]
南笙 2024-10-11 14:18:26

为您的 xml 构建 DOM 并使用 XPath 使用 //special_tag 查询“special_tag”是否存在

Build the DOM for your xml and use XPath to query for the existence of "special_tag" using //special_tag

谷夏 2024-10-11 14:18:26

看起来这是 SAX 的经典用例。
您应该注册您的侦听器并检查标签名称。当它等于special_tag时,获取该元素的父元素。

It seems that this is a classic usecase for SAX.
You should register your listener and check the tag name. When it equals to special_tag get the element's parent.

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