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
  • 20,587
  • 21
  • 94
  • 129
pratik
  • 981
  • 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,785
  • 4
  • 59
  • 86
  • 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