Hi,
I have some problems to generate an XML file, the file is created but the
root tag is not written into the file when I call the writeXML(writer,
root) method;
Here is the code :
try{
//Element root
Element root = new Element("root");
String path = FileSystemStorage.getInstance().getAppHomePath();
XMLWriter xw = new XMLWriter(false);
OutputStream os =
FileSystemStorage.getInstance().openOutputStream(path+""+"test.xml");
OutputStreamWriter writer = new OutputStreamWriter(os);
xw.writeXML(writer, root);
os.close();
writer.close();
}catch(....){
.....
}
Any idea ?
Thank you.
--
You received this message because you are subscribed to the Google Groups
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit
https://groups.google.com/d/msgid/codenameone-discussions/706637e8-de1f-4014-993e-be93cade8d81%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.