如果文件存在,是否可以将 apache FileUtils.writeLines() 附加到文件中

编程入门 行业动态 更新时间:2024-10-23 19:18:15
本文介绍了如果文件存在,是否可以将 apache FileUtils.writeLines() 附加到文件中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时送ChatGPT账号..

公共资源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 + "\n");
    }
}
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() 附加到文件中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

更多推荐

[db:关键词]

本文发布于:2023-04-17 20:35:03,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/921580.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:文件   apache   writeLines   FileUtils

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!