I have an org.w3c.dom.Element object passed into my method. I need to see the whole xml string including its childnodes (the whole object graph). I am looking for a method that can convert the Element into xml format string that I can system.out.println on. Just println on the element object won't work because toString won't output the xml format and won't go through its child node. Is there an easy way without writing my own method to do that? Thanks.
|
|
Assuming you want to stick with the standard API... You could use a DOMImplementationLS:
If the <?xml version="1.0" encoding="UTF-16"?> declaration bothers you, you could use a transformer instead:
|
||
|
|
|
Not supported in the standard JAXP API, I used the JDom library for this purpose. It has a printer function, formatter options etc. http://www.jdom.org/ |
||
|
|
|
|
If you have the schema of the XML or can otherwise create JAXB bindings for it, you could use the JAXB Marshaller to write to System.out:
|
|||
|
|
