首先要说的是RandomAccessFile类不属于流,是Object类的子类。这个问题很可能在面试的时候问到.
它融合了InputStream和OutputStream的功能。
支持对随机访问文件的读取和写入。
package com.heima.otherio;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;
public class Demo08_RandomAccessFile {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
RandomAccessFile raf = new RandomAccessFile("g.txt", "rw");
raf.seek(0); //在指定位置设置指针
raf.write(98);
raf.close();
}
|
|