After
File outputfile = new File(file, filename);
Insert this:
outputfile.createNewFile();
Blumer
2010-09-02 16:51:03
After
File outputfile = new File(file, filename);
Insert this:
outputfile.createNewFile();
Have you enabled the right permissions in the Android Manifest? i.e. android.permission.WRITE_EXTERNAL_STORAGE
.
I was getting the same FileNotFoundException when trying to save to SD before adding the permission.