void seek(long pos)


描述

所述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