如何在Android的“我的文件/内部存储/文档”文件夹中写入.txt文件?

时间:2018-09-19 04:59:32

标签: java android

我试图使用此代码,但是什么也没发生。

    String content = "hello";
    File file;
    FileOutputStream oustrong texttputStream;
    try {
        file = new File(Environment.getExternalStorageDirectory(),"MyCache.txt");
        outputStream = new FileOutputStream(file);
        outputStream.write(content.getBytes());
        outputStream.close();
        Toast.makeText(this,"Successss ...", Toast.LENGTH_SHORT).show();
    } 
    catch (IOException e) {
        e.printStackTrace();
    }

0 个答案:

没有答案