Java - I formed this current XML using Java DocumentBuilderFactory.
<server>
<excludeList>
<exclude>.ear</exclude>
<exclude>.war</exclude>
<exclude>.tar</exclude>
</excludeList>
I want the below new nodes to be added to my New XML using Java DocumentBuilderFactory:
<server>
<excludeList>
<exclude>.ear</exclude>
<exclude>.war</exclude>
<exclude>.tar</exclude>
<exclude>.txt</exclude>
<exclude>apps\third_party\activator</exclude>
<exclude>apps\temp</exclude>
<exclude>apps\xender</exclude>
</excludeList>