openFileOutput和openFileInput还有FileOutStream与openFileOutput

FileOutputStream fos = openFileOutput("",MODE_PRIVATE);
fos.write("private".getBytes());
fos.close();
原文地址:https://www.cnblogs.com/NuoChong/p/10439058.html