Skip to content

Instantly share code, notes, and snippets.

@zafe
Created June 3, 2015 19:18
Show Gist options
  • Save zafe/2351bf6b9525a1655cda to your computer and use it in GitHub Desktop.
Save zafe/2351bf6b9525a1655cda to your computer and use it in GitHub Desktop.
Write a file in android
public static void write (String filename,Context c,String string) throws IOException{
try {
FileOutputStream fos = c.openFileOutput(filename, Context.MODE_PRIVATE);
fos.write(string.getBytes());
fos.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment