Android device's internal storage memory
By default, files saved to the internal storage are private to your application and other applications cannot access them (nor can the user). When the user uninstalls your application, these files are removed.
To create and write a private file to the internal storage:
- Call openFileOutput() with the name of the file and the operating mode. This returns a FileOutputStream.
- Write to the file with write().
- Close the stream with close().