My application needs to write and read data from a xml file which is
stored in Internal Storage. I wrote some data to xml by using
FileOutputStream.

FileOutputStream fout=openFileOutput("user.xml",MODE_WORLD_READABLE);
OutputStreamWriter out=new OutputStreamWriter(fout);
out.write(xml_content);

And i'm using XmlPullParser to read data from the xml, but i am not
able to get an InputStream for the parser. Please help me out from
this problem.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to