6

I have an Application in which first I want to create a backup of message from inbox and store it into backup.xml file which is stored at SDCARD/MYBACKUP/mybackup.xml

Now I want to retrieve data, stored on SDCARD/MYBACKUP/mybackup.xml and display all messages in listview.

Sathyajith Bhat
  • 21,321
  • 22
  • 95
  • 134
pratik
  • 983
  • 3
  • 13
  • 25

1 Answers1

1

For Writing XML file to sdcard see this answeer Qberticus's Answer

android Reading file is just simple you have to use Xml parsing See This for XML parsing

To R/W Sdcard You have to give Permission

   <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
Community
  • 1
  • 1
Tofeeq Ahmad
  • 11,935
  • 4
  • 61
  • 87
  • work but cant open my .xml file. Error message like "error:couldn`t open mnt/sdcard/mybackup/abc.xml". – pratik Feb 13 '12 at 09:10
  • 1
    check you have mention permission for sdcard.See answer i have edited.and if problem solve then please accept it as answer – Tofeeq Ahmad Feb 13 '12 at 09:21