Skip to content Skip to sidebar Skip to footer

Saving Bitmap From Fragment To Internal/external Storage

I was getting the following exception while Saving bitmap from fragment to internal/external storage 11-28 12:09:18.667: W/System.err(2620): java.io.FileNotFoundException: /storage

Solution 1:

I think you are already deleting the file after creating it and then you are trying to convert the non-exists file into the bitmap which is not valid. That is why you are getting an error no such file or directory found.

Just remove the line file.delete(); from your code and try out.

Solution 2:

Instead of

   myDir.mkdirs();

use

file.mkdirs();

mkdirs creates only parent directories, so use it on file rather than directory.

Edit: Then maybe add this too

file.createNewFile();

Post a Comment for "Saving Bitmap From Fragment To Internal/external Storage"