Copy one xml document to another using DOM - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:54:26Z http://stackoverflow.com/feeds/question/881787 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/881787/copy-one-xml-document-to-another-using-dom 0 Copy one xml document to another using DOM Roberto 2009-05-19T09:26:20Z 2009-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#881850 1 Answer by dfa for Copy one xml document to another using DOM dfa 2009-05-19T09:45:12Z 2009-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>