Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i want to create an xml file to write data in it
i found many tutorials about this and i would like to use the XmlSerializer
my problem is that i didn't find a clear article about this
the location of creating the file is not clear can any body give a clear tutorial for creating (especially location of created file) an xml file and appending data to it

share|improve this question
do a google search for XmlDocument or, if you prefer linq to xml, XDocument – Sam I am Jan 18 at 21:39

closed as off topic by Sam I am, A--C, KatieK, Ed Heal, competent_tech Jan 19 at 1:36

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

Just read this article:

http://developer.android.com/guide/topics/data/data-storage.html

If you want to place it in private storage (from the article):

String FILENAME = "hello_file";
String string = "hello world!";

FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
fos.write(string.getBytes());
fos.close();

It covers all the bases of storing and retrieving files in an Android application.

share|improve this answer
i want to create it locally and a file name new.xml – oooss Jan 18 at 21:29

Not the answer you're looking for? Browse other questions tagged or ask your own question.