Java 实现文件随机读写-RandomAccessFile

RandomAccessFile的作用在于,我们不需要把整个文件加载进内存,它是像类似于指针一样的东西,实现读写

这是我的目标文件

public class RandomAccessFileTest {
	public static void main(String[] args) throws Exception {
		RandomAccessFile raf = new RandomAccessFile("C://Users/Administrator/Desktop/test.txt", "rw");
		System.out.println(raf.getFilePointer());
		byte[] bytes = new byte[1024];
		int hasRead = 0;
		//随机读
		raf.seek(5);
		while ((hasRead = raf.read(bytes)) > 0) {
			System.out.println(new String(bytes, 0, hasRead));
		}
		//随机写
		raf.seek(raf.length()/2);
		//它会把下面这句文字从raf.length()/2那个位置开始写,注意,如果原先那个位置有值,会被直接覆盖
		raf.write("我是后面追求的".getBytes());
	}
}

然后我实现了随机读写,看写完之后的内容是什么,可以看到有些内容被覆盖了

 

你可能感兴趣的:(JAVA基础)