0

我让这个工作突然停止工作,但应用程序运行没有崩溃,唯一的问题是该文件不是在 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();
        }
    }
4

1 回答 1

0

也许这是一个许可问题。我以前也有类似的问题。

于 2013-08-15T00:19:47.910 回答