Skip to content Skip to sidebar Skip to footer

Save / Load Image To/from Local Storage

First of all, my permissions: Copy

and then do a read on the file. It should work.

Solution 2:

You need to write file existing check. Then it'll be easier to find problem. Short example

Filetest=newFile (URI)
if ( test.exists() )
{
    // do your computation
} else 
{
    // find problem in file path
}

Post a Comment for "Save / Load Image To/from Local Storage"