位置:首頁 > Java技術 > Java.io包 > java.io.FileInputStream.read(byte[] b, int off, int len)方法實例

java.io.FileInputStream.read(byte[] b, int off, int len)方法實例

java.io.FileInputStream.read(byte[] b, int off, int len) 讀取從此輸入流中的數據len個字節到字節數組,開始在目標數組b的偏移。

聲明

以下是方法java.io.FileInputStream.read(byte[] b, int off, int len)的聲明:

public int read(byte[] b, int off, int len)

參數

  • b - 讀取字節數組數據。

  • off - 開始在目標數組b的偏移。

  • len - 要讀取的最大字節數。

返回值

該方法返回讀入緩衝區的字節總數

異常

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

  • NullPointerException - 如果b為 null.

  • IndexOutOfBoundsException - 如果len或off是負數的,或 b.length-off大於b.length。

例子

下麵的例子顯示java.io.FileInputStream.read(byte[] b, int off, int len)方法的用法。

package com.yiibai;

import java.io.IOException;
import java.io.FileInputStream;

public class FileInputStreamDemo {
   public static void main(String[] args) throws IOException {
      
      FileInputStream fis = null;
      int i = 0;
      char c;
      byte[] bs = new byte[4];
      
      try{
         // create new file input stream
         fis = new FileInputStream("C://test.txt");
         
         // read bytes to the buffer
         i=fis.read(bs, 2, 1);
         
         // prints
         System.out.println("Number of bytes read: "+i);
         System.out.print("Bytes read: ");
         
         // for each byte in buffer
         for(byte b:bs)
         {
            // converts byte to character
            c=(char)b;
            if(b==0)
               c='-';
            
            // print
            System.out.print(c);
         }   
      }catch(Exception ex){
         // if any error occurs
         ex.printStackTrace();
      }finally{
         
         // releases all system resources from the streams
         if(fis!=null)
            fis.close();
      }
   }
}

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

ABCDEF

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

Number of bytes read: 1
Bytes read: --A-