<黑马程序员>RandomAccessFile类的使用简述
import java.io.*;public class RandomAccessFile_demo {public void RandomAccessFile_demo1() throws IOException{RandomAccessFile w = new RandomAccessFile("rd.txt","rw");w.write("李四".getBytes())