RandomAccessFile随机访问文件,其中包含一个记录指针,用于标识当前流的读写位置。其中包含两个方法来操作记录指针。
long getFilePoint()记录当前文件指针的位置。
void seek(long pos)将文件记录指针定位到pos位置。
RandomAccessFile类的构造函数是:
public RandomAccessFile(File file,String mode)throws FileNotFoundException
public RandomAccessFile(String name,String mode)throws FileNotFoundException
RandomAccessFile的四种读写方式
今天完成第十二章第一题,明天完成第二题。
原文:https://www.cnblogs.com/zhanghua-lijie/p/13472136.html