當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.RandomAccessFile.seek()用法及代碼示例



描述

這個java.io.RandomAccessFile.seek(long pos)方法設置 file-pointer 偏移量,從該文件的開頭開始測量,在該處發生下一次讀取或寫入。偏移量可能設置在文件末尾之外。設置超出文件末尾的偏移量不會改變文件長度。隻有在將偏移量設置為超出文件末尾之後,文件長度才會更改。

聲明

以下是聲明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.seek() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。