Write a File to Android Internal Storage from String

Knowledge Base Entry: #38
^Top
<< Back
Mobile-Menu










Write a File to Android Internal Storage from String
Category: Android/Snippets
Author: Bugfish
Created at: 2020-08-25 04:40:23
Modified at: 2025-09-19 23:57:11
Directs Hits: 778

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();
}
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.
This Website is using Session Cookies for Site Functionality.