gpt4 book ai didi

java - 如何访问我创建的文本文件?

转载 作者:行者123 更新时间:2023-12-02 12:04:48 25 4
gpt4 key购买 nike

 file = new File(getFilesDir(), "data.txt");
try {
FileOutputStream fos = openFileOutput(fileName, Context.MODE_APPEND);
fos.write(data.getBytes());
fos.close();
} catch (IOException e) {
e.printStackTrace();
}

有没有办法导出此文件以便我可以访问它?顺便说一句,我没有可用的 SD 卡。

最佳答案

File file = new File(Environment.getExternalStorageDirectory()+"/Download/", "yourFile.extension");

这是下载目录。

然后打开您的文件

Intent myIntent = new Intent(Intent.ACTION_VIEW);
myIntent.setData(Uri.fromFile(file));
Intent j = Intent.createChooser(myIntent, "Choose an application to open with:");
startActivity(j);

关于java - 如何访问我创建的文本文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46971160/

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