我可以用Java写入5GB文件的末尾吗?这个问题出现在我的办公室里,没有人确定答案是什么.
使用RandomAccessFile可以相当容易地实现这一点.像下面这样的东西应该工作:
String filename; RandomAccessFile myFile = new RandomAccessFile(filename, "rw"); // Set write pointer to the end of the file myFile.seek(myFile.length()); // Write to end of file here
是.看看这个链接RandomAccessFile
http://java.sun.com/javase/6/docs/api/java/io/RandomAccessFile.html#seek(long)
也就是说,打开文件,然后将位置设置为文件的末尾.并从那里开始写作.
告诉我们它是怎么回事.