Java.io.RandomAccessFile.seek() 方法



描述

java.io.RandomAccessFile.seek(long pos) 方法设置文件指针偏移量,该偏移量以文件开头为基准,用于指示下一次读取或写入操作发生的位置。偏移量可以设置为超出文件末尾。将偏移量设置为超出文件末尾不会更改文件长度。只有在将偏移量设置为超出文件末尾后进行写入时,文件长度才会发生变化。

声明

以下是 java.io.RandomAccessFile.seek() 方法的声明。

public void seek(long pos)

参数

pos − 偏移位置,以字节为单位,从文件开头计算,用于设置文件指针的位置。

返回值

此方法不返回值。

异常

IOException − 如果 pos 小于 0 或发生 I/O 错误。

示例

以下示例演示了 java.io.RandomAccessFile.readUTF() 方法的使用。

package com.tutorialspoint;

import java.io.*;

public class RandomAccessFileDemo {
   public static void main(String[] args) {
   
      try {
         // create a new RandomAccessFile with filename test
         RandomAccessFile raf = new RandomAccessFile("c:/test.txt", "rw");

         // write something in the file
         raf.writeUTF("Hello World");

         // set the file pointer at 0 position
         raf.seek(0);

         // print the string
         System.out.println("" + raf.readUTF());

         // set the file pointer at 5 position
         raf.seek(5);

         // write something in the file
         raf.writeUTF("This is an example");

         // set the file pointer at 0 position
         raf.seek(0);

         // print the string
         System.out.println("" + raf.readUTF());
         
      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}

假设我们有一个文本文件 c:/test.txt,其内容如下。此文件将用作我们示例程序的输入 -

ABCDE  

让我们编译并运行上述程序,这将产生以下结果 -

Hello World
Hel This i
java_io_randomaccessfile.htm
广告