我让这个工作突然停止工作,但应用程序运行没有崩溃,唯一的问题是该文件不是在 Eclipse 的 DDMS 的文件资源管理器中创建的。请帮忙。谢谢
//path to file
String clientList ="data/data/com.example.jaimepersonaltrainer2/files/ClientList.txt";
FileWriter fos;
try {
fos = new FileWriter(clientList,true);
BufferedWriter buffOut = new BufferedWriter(fos);
for(String s: clientNamesArrayList){
buffOut.write(s);
}
buffOut.flush();
buffOut.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}