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

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

java.io.RandomAccessFile.read() 方法讀取數據從該文件一個字節。該字節的範圍是0-255(0×00-0x0FF的)返回一個整數。

聲明

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

public int read()

參數

  • NA

返回值

此方法返回下一個數據字節,或如果該文件的末尾已到達返回-1。

異常

  • IOException -- 如果發生I/ O錯誤。如果已經達到文件結束不會拋出。

例子

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

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);

         // read the first byte and print it
         System.out.println("" + raf.read());

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

         // read the first byte and print it
         System.out.println("" + raf.read());
      } catch (IOException ex) {
         ex.printStackTrace();
      }

   }
}

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

ABCDE  

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

0
108