Hi,
I create a DOM tree with xerces from a XML file :
DOMParser parser = new DOMParser();
try
{
parser.parse("file.xml");
}
catch (SAXException se)
{
se.printStackTrace();
}
Document RequeteXML = parser.getDocument();
NodeList NL = RequeteXML.getElementsByTagName("Mot");
etc .....................
I do some works on this tree ... I add and remove Nodes etc ...
btu I know, I'd like to make the reverse operation : I'd like to transform
my Domtree "Document RequeteXML" in a file "requeteXML.xml" on my hard disk
...
is it possible, and how can I do this ??
thank you in advance !!
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]