标签:io os 使用 java ar 文件 数据 on c
import java.io.IOException;
import java.io.RandomAccessFile;
public class RandomFileAccess {
public static void main(String[] args) throws IOException {
RandomAccessFile raf = new RandomAccessFile("d:/abc.txt", "rw");
// 你需要使用seek设置文件的偏移量
raf.seek(raf.length());
raf.writeChars("ajaxfan");
raf.close();
}
}
java RandomAccessFile 向文件中写入数据,怎么样不覆盖原来的数据
标签:io os 使用 java ar 文件 数据 on c
原文地址:http://www.cnblogs.com/hbmlml/p/3967080.html