how to slove RandomAccessFile always return FileNotFound Exception
tFile = new File(path);
RandomAccessFile testFile = null;
testFile = new RandomAccessFile(tFile, "r");
I can get the uri form File like this:content://media/external/images/media/xxxx , but how to initial File
google doc. RandomAccessFile initial , public RandomAccessFile(File file, String mode) throws FileNotFoundException , public RandomAccessFile(String name, String mode) throws FileNotFoundException
how to initial RandomAccessFile?