| Author |
DOM Node to XML
|
Anjali S Sharma
Ranch Hand
Joined: Jun 29, 2005
Posts: 279
|
|
Can some one please let me know if there is a utility/method to convert a DOM node to an XML. I have manipulated the Node object and I want to see it's contents. Can I print it in the form of an XML? Thank you
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12321
|
|
It looks to me like you can create a javax.xml.transform.dom.DOMsource from a Node and then use a Transformer to process that Source to a Result which could write to a string or output stream. See javax.xml.transform.stream.StreamResult javax xml.transform.Transformer etc. Bill
|
Java Resources at www.wbrogden.com
|
 |
Anjali S Sharma
Ranch Hand
Joined: Jun 29, 2005
Posts: 279
|
|
|
Thank you so much
|
 |
 |
|
|
subject: DOM Node to XML
|
|
|