gpt4 book ai didi

android - 在 .txt 文件中创建和写入内容的文件

转载 作者:行者123 更新时间:2023-11-29 22:02:02 25 4
gpt4 key购买 nike

我正在使用 getFilesDir() + 文件名创建一个文件,我得到的是 filesfileName.txt,你能告诉我为什么我得到这个文件名而不是 fileName.txt 吗。谢谢你的关心。


File file = new File(mContext.getFilesDir() + fileName+ ".txt");
if (!file.exists()) {

file.createNewFile();
FileWriter f;
try {

f = new FileWriter(mContext.getFilesDir() + fileName
+ ".txt");
f.write(fbFriendList);
f.flush();
f.close();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}

最佳答案

最好使用 Path.Combine 来创建 FullPath-Strings:

File file = new File(Path.Combine(mContext.getFilesDir(), fileName+ ".txt"));

关于android - 在 .txt 文件中创建和写入内容的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11666453/

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