Write a File to Android Internal Storage from String
Category: Android-Java
Sub-Category:
Creator: Jan-Maurice Dahlmanns
Created: 2020-08-25 04:40:23
Modified: 2024-11-16 23:41:11
Views: 768
Caution: I do not guarantee the reliability of the information given here, the code described on this page is executed at your own risk and in the event of damage or other unforeseeable consequences I am in no way responsible or liable.
Write a File in Android to Internal Storage from String
void writeFile(String data, Context context, String filename) throws IOException {
OutputStreamWriter outStream = new OutputStreamWriter(context.openFileOutput(filename, Context.MODE_PRIVATE));
outStream.write(data);
outStream.close();
}