将多个子节点添加到父节点JDOM

时间:2019-01-23 16:16:28

标签: jdom

我正在尝试读取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>

0 个答案:

没有答案