3

我正在使用以下代码创建文件

      OutputStreamWriter out = new OutputStreamWriter(openFileOutput("try.txt",0));
      // write the contents on mySettings to the file
      out.write("erterter");
      // close the file
      out.close();
4

1 回答 1

3

以这种方式创建的文件存储在应用程序的私有存储中:/data/data/com.package/files

于 2012-07-23T15:02:35.920 回答