0

我是 groovy 的新手,所以作为我任务的一部分,我需要更新 xml。

我的xml是::

<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"xmlns:xsd="http://www.w3.org/2001/XMLSchema"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<root xmlns="">
<queries>


<query list="true" type="Query">
<retrieve extent="3" offset="0" size="10000" subtype="uk.co.netdev.icr.provisioning.data.Corp">
<criteria list="true" type="Criteria">
<string-criteria expression="IAS" field-name="name"/>
</criteria></retrieve></query>
</queries></root></in0></soapenv:Body></soapenv:Envelope>

从这个 xml 我需要删除 xml 的某些部分,并且应该将输出打印为::

<root xmlns=""><queries><query list="true" type="Query"><retrieve extent="3" offset="0" size="10000" subtype="uk.co.netdev.icr.provisioning.data.Corp"><criteria list="true" type="Criteria"><string-criteria expression="IAS" field-name="name"/></criteria></retrieve></query></queries></root>

请建议,谢谢。

4

1 回答 1

0

我想这就是你需要的:

def soapMsg = new XmlSlurper().parseText(inputXml);
def output = groovy.xml.XmlUtil.serialize(soapMsg.Body.root)

顺便说一句,您上面的输入 XML 有一些额外的标签:“</in0>”

于 2014-01-07T00:10:56.470 回答