Summary of two methods of adding data to the tail of file in Java

Summary of two methods of adding data to the tail of file in Java

Problem Description:

Append content at the end of the file

Method 1: use RandomAccessFile class

1. Set the RandomAccessFile mode to RW. 2. Move the RandomAccessFile (seek) to the end of the file. 3. Append data. 4. Close the stream

Method 2: use filewriter class

1. Set the second parameter of filewriter constructor to true It means adding 2 and 3 data at the end Close flow

Implementation code:

If you have any questions, please leave a message or go to the community of this site for exchange and discussion. Thank you for reading. I hope it can help you. Thank you for your support to this site!

The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>