gpt4 book ai didi

java - 在android studio中找到保存的文件

转载 作者:行者123 更新时间:2023-11-30 10:32:13 24 4
gpt4 key购买 nike

我最近开始了一个项目,该项目涉及将我的 android 应用程序的一串结果保存到手机的内部存储器中。这是我用来执行此操作的代码:

case R.id.saveButton:
String fileName = "testFile";
FileOutputStream outputStream;
try {
outputStream = openFileOutput(fileName, Context.MODE_PRIVATE);
outputStream.write(results.getBytes());
outputStream.close();
Toast.makeText(getApplicationContext(), "File Saved", Toast.LENGTH_LONG).show();
} catch (IOException e) {
Log.d("FILE", "Error when saving the file");
}

break;

toast 消息正确显示在屏幕上,但我似乎无法在手机上找到该文件。我的问题是手机上保存的文件在哪里,我可以访问它吗?如果我无法访问它,是否有办法让该文件在手机上可见以便我可以访问它?

最佳答案

where is the file saved on the phone

对于默认用户,对于典型设备,它在 /data/data/your.application.id.goes.here/files/ 中。但是,您不能直接在生产硬件上访问该目录。您可以:

If i cant access it is there a way to make the file visible on the phone so I can access it?

不是你写的地方。

关于java - 在android studio中找到保存的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42817053/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com