Чтобы открыть файл из личной папки приложения, можно использовать этот путь к файлу:
File myFilePath = new File(getContext().getFilesDir() + File.separator + "myFile")
Вы можете проверить, существует ли файл if(myFilePath.exists())
...
Чтобы сохранить текстовый файл в личном каталоге приложения
FileOutputStream fos = null;
try {
fos = getContext().openFileOutput("myFile",Context.MODE_PRIVATE);
} catch (FileNotFoundException e) { }
try {
fos.write(myTextString.getBytes());
} catch (IOException e) { }
try {
fos.close();
} catch (IOException e) { }
Чтобы сохранить изображение в личном каталоге приложения:
try {
myBitmapImage.compress(CompressFormat.JPG, 90,
openFileOutput("myimage.jpg", MODE_PRIVATE));
} catch (Exception e) { }