如何使用 Groovy 的 XmlSlurper 检查元素是否存在?
我正在尝试使用 Groovy 的 XmlSlurper 确定 XML 元素是否存在。 有没有办法做到这一点? 例如:
<foo>
<bar/>
</foo>
如何检查bar元素是否存在?
I'm trying to determine whether an XML element exists with Groovy's XmlSlurper. Is there a way to do this? For example:
<foo>
<bar/>
</foo>
How do I check whether the bar element exists?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
API 有点奇怪,但我认为有一些更好的方法来寻找孩子。 当您请求“xml.bar”(存在)或“xml.quux”但不存在时,您得到的是 groovy.util.slurpersupport.NodeChildren 对象。 基本上是满足您要求的标准的节点的集合。
查看特定节点是否存在的一种方法是检查 NodeChildren 的大小是否为预期大小:
另一种方法是使用 find 方法并查看是否返回节点的名称(不幸的是总是返回某些内容) ,是您所期待的:
The API is a little screwy, but I think that there are a couple of better ways to look for children. What you're getting when you ask for "xml.bar" (which exists) or "xml.quux" which doesn't, is a groovy.util.slurpersupport.NodeChildren object. Basically a collection of nodes meeting the criteria that you asked for.
One way to see if a particular node exists is to check for the size of the NodeChildren is the expected size:
Another way would be to use the find method and see if the name of the node that gets returned (unfortunately something is always returned), is the one you were expecting:
GPathResult 上的 isEmpty 方法有效。
这让我很困扰,因为 bar 元素是空的 - 它没有主体。 但我认为 GPathResult 不为空,所以也许这是有道理的。
The isEmpty method on GPathResult works.
This bothers me, because the bar element is empty - it doesn't have a body. But I suppose the GPathResult isn't empty, so maybe this makes sense.