我正在尝试读取xml文件并在原始结构中添加新字段。
我能够添加一个子元素。它适用于一个,这是在for循环内。
Rec.addContent(new Element(“ SystemExternalCodes”)。addContent(new Element(“ optionIDS”)。setText(POS.getChild(“ id”)。getText())));
这是结果的片段
<SystemExternalCodes>
<optionIDS>9186</optionIDS>
</SystemExternalCodes>
<SystemExternalCodes>
<optionIDS>9185</optionIDS>
</SystemExternalCodes>
但是我需要的是:
<SystemExternalCodes>
<optionIDS>9186</optionIDS>
<anotherfield>9186</anotherfield>
</SystemExternalCodes>
<SystemExternalCodes>
<optionIDS>9185</optionIDS>
<anotherfield>9186</anotherfield>
</SystemExternalCodes>