Append data into a file using Apache Commons I/O

前端 未结 7 1605
野的像风
野的像风 2020-12-09 14:48

The FileUtils.writeStringToFile(fileName, text) function of Apache Commons I/O overwrites previous text in a file. I would like to append data to my file. Is th

7条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-09 15:42

    Actually, version 2.4 of apache-commons-io FileUtils now has append mode for collections as well.

    Here's the Javadoc

    And the maven dependency:

    
        commons-io
        commons-io
        2.4
        jar
    
    

提交回复
热议问题