我有一个 android 应用程序,我需要在文本文件中写入一些字符串值。我有编码写在一个文本文件中。但我不知道我应该在哪里创建我的文本文件。请参考下面的代码,
FileOutputStream fOut = null;
OutputStreamWriter osw = null;
try{
fOut = openFileOutput(“public.dat”, Context.MODE_PRIVATE);
osw = new OutputStreamWriter(fOut);
osw.write(“TEXT”);
osw.close();
fOut.close();
}catch(Exception e){
e.printStackTrace(System.err);
}
请告诉我应该在哪个路径中创建文本文件。