PrintWriter to append data if file exist

好久不见. 提交于 2019-11-29 12:03:33
Braj

Once you call PrintWriter out = new PrintWriter(savestr); the file is created if doesn't exist hence first check for file existence then initialize it.

As mentioned in it's Constructor Docmentation as well that says:

If the file exists then it will be truncated to zero size; otherwise, a new file will be created.

Since file is created before calling f.exists() hence it will return true always and ìf block is never executed at all.

Sample code:

String savestr = "mysave.sav"; 
File f = new File(savestr);

PrintWriter out = null;
if ( f.exists() && !f.isDirectory() ) {
    out = new PrintWriter(new FileOutputStream(new File(savestr), true));
}
else {
    out = new PrintWriter(savestr);
}
out.append(mapstring);
out.close();

For better resource handling use Java 7 - The try-with-resources Statement

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!