位置:首頁 > Java技術 > Java.io包 > Java.io.RandomAccessFile.skipBytes()方法實例

Java.io.RandomAccessFile.skipBytes()方法實例

java.io.RandomAccessFile.skipBytes(int n) 方法嘗試跳過n個字節的輸入丟棄跳過的字節。此方法可能跳過某些較小的字節數,可能為零。這可能是由於任意數量的條件;到達文件的末尾n個字節被跳過之前隻有一種可能。這種方法不會拋出拋出:EOFException。返回的實際跳過的字節數。如果n為負,則不跳過任何字節。

聲明

以下是java.io.RandomAccessFile.skipBytes()方法的聲明

public int skipBytes(int n)

參數

  • n -- 要跳過的字節數。

返回值

此方法返回的實際跳過的字節數。

異常

  • IOException -- 如果發生I/ O錯誤。

例子

下麵的示例演示java.io.RandomAccessFile.skipBytes()方法的用法。

package com.yiibai;

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 0 position
         raf.seek(0);

         // attempt to skip 10 bytes and print the number of bytes skipped
         System.out.println("" + raf.skipBytes(10));

         // print what is left after skipping
         System.out.println("" + raf.readLine());

         // set the file pointer to position 8
         raf.seek(8);

         // attempt to skip 10 more bytes and print the number of bytes skipped
         System.out.println("" + raf.skipBytes(10));
      } catch (IOException ex) {
         ex.printStackTrace();
      }

   }
}

假設我們有一個文本文件c:/ test.txt,它具有以下內容。該文件將被用作輸入到我們的示例程序:

ABCDE  

讓我們編譯和運行上麵的程序,這將產生以下結果:

Hello World
10
rld
5