我正在使用 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();
}
}