我是 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>
请建议,谢谢。