Can apache FileUtils.writeLines() be made to append to a file if it exists(如果存在,可以使 apache FileUtils.writeLines() 附加到文件)
问题描述
公共 FileUtils 看起来很酷,我不敢相信它们不能附加到文件中.
The commons FileUtils look pretty cool, and I can't believe that they cannot be made to append to a file.
File file = new File(path);
FileUtils.writeLines(file, printStats(new DateTime(), headerRequired));
上面只是每次都替换文件的内容,我只想像这段代码一样继续标记这些东西以结束.
The above just replaces the contents of the file each time, and I would just like to keep tagging this stuff to end just as this code does.
fw = new FileWriter(file, true);
try{
for(String line : printStats(new DateTime(), headerRequired)){
fw.write(line + "
");
}
}
finally{
fw.close();
}
我已经搜索了 javadoc,但什么也没找到!我错过了什么?
I've searched the javadoc but found nothing! What am I missing?
推荐答案
你可以使用IOUtils.writeLines(),它接收一个 Writer 对象,你可以像你的第二个例子一样初始化.
You can use IOUtils.writeLines(), it receives a Writer object which you can initialize like in your second example.
这篇关于如果存在,可以使 apache FileUtils.writeLines() 附加到文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如果存在,可以使 apache FileUtils.writeLines() 附加到文件
基础教程推荐
- 如何对 HashSet 进行排序? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01