vote up 0 vote down star

I'm looking for a reliable, implementation-independent way to clone an entire Document. The Javadocs specifically say that calling cloneNode on a Document is implementation-specific. I've tried passing the Document through a no-op Transformer, but the resulting Node has no owner Document.

I could create a new Document and import the nodes from the old one, but I'm afraid there might be bits of Document metadata that get lost. Same thing with writing the Document to a string and parsing it back in.

Any ideas?

By the way, I'm stuck at Java 1.4.2, for reasons beyond my control.

flag

56% accept rate

1 Answer

vote up 1 vote down

Still, how about the quick'n'dirty way: serialize the whole Document into XML string and then parse it back using DOM Parser?

I don't see a reason why the serialized version would lack anything. Mind to provide an example?

Memory consumption would be significant, but, on the other hand, if you're duplicating the whole DOM, it cannot be small anyway...

link|flag
This is a contrived example, but serializing the document will normalize it. (Adjacent text nodes will be combined.) Memory consumption in this particular case is not an issue. – Adam Crume Nov 12 '08 at 18:30
Actually, a much better example would be a document with an inline DTD. If you use a no-op transformer to serialize the DOM, the DTD gets left out. Of course, if there's a better way to serialize the DOM, I'm all ears. – Adam Crume Nov 12 '08 at 19:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.