Copy one xml document to another using DOM - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T23:54:26Zhttp://stackoverflow.com/feeds/question/881787http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/881787/copy-one-xml-document-to-another-using-dom0Copy one xml document to another using DOMRoberto2009-05-19T09:26:20Z2009-05-19T09:45:12Z
<p>Hi guys,
this is my situation:</p>
<p>I have two org.w3c.dom.Document created from two xml files. What I want to obtain is brand new Document containing all the data of the two xml Document.</p>
<p>Do you have any idea on how to do this?</p>
<p>Thanks!
Rob</p>
http://stackoverflow.com/questions/881787/copy-one-xml-document-to-another-using-dom/881850#8818501Answer by dfa for Copy one xml document to another using DOMdfa2009-05-19T09:45:12Z2009-05-19T09:45:12Z<ul>
<li>create a new document</li>
<li>create a new root called <strong>newRoot</strong></li>
<li>add the first document root as child of <strong>newRoot</strong></li>
<li>add the second document root as child of <strong>newRoot</strong></li>
</ul>