我知道这里有一些关于此的问题,但我仍然找不到答案。我需要在外部存储中写一些文本,但是这段代码会使应用程序崩溃。请注意,String dane 就是这个文本。
void zapis2 (String dane){
Context myContext = getApplicationContext();
File file = new File(myContext.getExternalFilesDir(null), "state.txt");
try {
FileOutputStream os = new FileOutputStream(file, true);
OutputStreamWriter out = new OutputStreamWriter(os);
out.write(dane);
out.close();}catch (IOException e) {
}
}
你有什么想法吗。我当然在 android manifest 中添加了权限。