JavaSE_IO_RandomAccessFile 灰太狼 2021-10-06 03:48 372阅读 0赞 ### JavaSE\_IO\_RandomAccessFile ### * 简介 * 说明 * 简单示例 * * 文本追加 * 指定位置插入 # 简介 # RandomAccessFile的唯一父类是Object,与其他流父类不同。是用来访问那些保存数据记录的文件的,这样你就可以用seek( )方法来访问记录,并进行读写了。这些记录的大小不必相同;但是其大小和位置必须是可知的。 # 说明 # (1)指针 RandomAccessFile文件记录指针方法 long getFilePointer():返回文件记录指针的当前位置 void seek(long pos):将文件记录指针定位到pos位置 (2)访问模式 r:以只读方式打开指定文件。如果试图对该RandomAccessFile指定的文件执行写入方法则会抛出IOException; rw:以读取、写入方式打开指定文件。如果该文件不存在,则尝试创建文件; rws:以读取、写入方式打开指定文件。相对于rw模式,还要求对文件的内容或元数据的每个更新都同步写入到底层存储设备; rwd:与rws类似,只是仅对文件的内容同步更新到磁盘,而不修改文件的元数据 # 简单示例 # 仅供参考,未做异常处理和io关闭操作。 ## 文本追加 ## public static void main(String[] args) throws Exception { String content = "\n现在的女孩都很现实"; String filePath = "D:/test.txt"; //文本追加插入 simpleInsert(filePath,content); } private static void simpleInsert(String filePath,String content) throws Exception { RandomAccessFile raf = new RandomAccessFile(filePath,"rw"); raf.seek(raf.length()); raf.write(content.getBytes()); print(filePath); } private static void print(String filePath) throws IOException { FileReader fileReader = new FileReader(filePath); BufferedReader br = new BufferedReader(fileReader); String s; while ((s = br.readLine()) != null) { System.out.println(s); } fileReader.close(); } ![在这里插入图片描述][2019031914290715.png] ## 指定位置插入 ## 如果需要向文件指定的位置插入内容,程序需要先把插入点后面的内容读入缓冲区,等插入完成后,再讲缓冲区的内容追加到文件的后面。 public static void main(String[] args) throws Exception { String content = "大多"; String filePath = "D:/test.txt"; //指定位置插入 pointerInsert(filePath,28,content); } private static void pointerInsert(String filePath,int pos, String content) throws Exception{ //创建临时目录 File tempFile = File.createTempFile("temp",null); tempFile.deleteOnExit(); FileOutputStream fos = new FileOutputStream(tempFile); RandomAccessFile raf = new RandomAccessFile(filePath,"rw"); //读取指定位置后文本到缓存文件中 raf.seek(pos); byte[] buffer = new byte[64]; int num = 0; while(-1 != (num = raf.read(buffer))) { fos.write(buffer,0,num); } //在指定位置插入文本后,再追加缓存文件的文本 raf.seek(pos); raf.write(content.getBytes()); FileInputStream fis = new FileInputStream(tempFile); while(-1 != (num = fis.read(buffer))) { raf.write(buffer,0,num); } print(filePath); } private static void print(String filePath) throws IOException { FileReader fileReader = new FileReader(filePath); BufferedReader br = new BufferedReader(fileReader); String s; while ((s = br.readLine()) != null) { System.out.println(s); } fileReader.close(); } ![在这里插入图片描述][20190319144639253.png] [2019031914290715.png]: /images/20211006/e5f49b222736451884e2473b05f23113.png [20190319144639253.png]: /images/20211006/a552e71203554e28a9502dd419b56561.png
还没有评论,来说两句吧...