1

我正在使用 XMLSlurper。我的代码在下面(但不起作用)。问题是当它碰到一个没有属性“id”的节点时它会失败。我该如何解释?

//Parse XML
def page = new XmlSlurper(false,false).parseText(xml)

//Now save the value of the proper node to a property (this fails)
properties[ "finalValue" ] = page.find {
    it.attributes().find { it.key.equalsIgnoreCase( 'id' ) }.value == "myNode"
};

我只需要考虑没有“id”属性的节点,这样它就不会失败。我怎么做?

4

2 回答 2

1

您也可以使用 GPath 表示法,并首先检查“@id”是否为空。

下面的代码片段找到最后一个元素(因为 id 属性是“B”并且值也是“bizz”,所以它打印出“bizz”和“B”)。

def xml = new XmlSlurper().parseText("<foo><bar>bizz</bar><bar id='A'>bazz</bar><bar id='B'>bizz</bar></foo>")
def x =  xml.children().find{!it.@id.isEmpty() && it.text()=="bizz"}
println x
println x.@id
于 2012-03-14T21:48:40.360 回答
0

显然,当我简单地使用 depthFirst 时,我可以让它工作。所以:

properties[ "finalValue" ] = page.depthFirst().find {
    it.attributes().find { it.key.equalsIgnoreCase( 'id' ) }.value == "myNode"
};
于 2012-03-14T20:52:02.227 回答