文件未以编程方式创建

时间:2018-04-12 16:14:33

标签: java android filewriter bufferedwriter

我为Android应用程序编写了一个方法:

public void doMethod()throws IOException{
    Log.d("STORAGE", Environment.getExternalStorageDirectory().toString());
    File file = new File(context.getExternalFilesDir("NOTES")+"TEST.txt");
    Log.d("FILE", file.createNewFile()+"");

    FileOutputStream os = new FileOutputStream(file);
    BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(os));
    bw.write("HELLO WORLD");
    bw.close();
    Log.d("WRITE", "DONE");
}

尽管执行了此代码(从活动中调用此方法),但在打开TEST.txt目录时,我无法在手机的文件管理器中看到文件NOTES

正在创建名为NOTES的目录,没有任何问题。我的TEST.txt文件在哪里?

0 个答案:

没有答案