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

java.io.BufferedInputStream.read(byte[] b, int off, int len)

java.io.BufferedInputStream.read(byte[] b, int off, int len) 方法讀取字節的輸入流len個字節到字節數組,開始在一個給定的偏移量。這種方法反複調用底層流的read()方法。
該迭代讀繼續進行,直到下列條件之一為真:

  • len 字節讀取
  • 返回-1,表示文件結束 - 。
  • 如果緩衝輸入available()方法返回0

聲明

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

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

參數

  • b - 字節數組進行填充。

  • off - 從開始的偏移存儲數。

  • len - 要讀取的字節數。

返回值

此方法不返回任何值。

異常

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

例子

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

package com.yiibai;

import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.InputStream;

public class BufferedInputStreamDemo {
   public static void main(String[] args) throws Exception {

      InputStream inStream = null;
      BufferedInputStream bis = null;

      try{
         // open input stream test.txt for reading purpose.
         inStream = new FileInputStream("c:/test.txt");
         
         // input stream is converted to buffered input stream
         bis = new BufferedInputStream(inStream);
         
         // read number of bytes available
         int numByte = bis.available();
         
         // byte array declared
         byte[] buf = new byte[numByte];
         
         // read byte into buf , starts at offset 2, 3 bytes to read
         bis.read(buf, 2, 3);
         
         // for each byte in buf
         for (byte b : buf) {
            System.out.println((char)b+": " + b);
         }
         }catch(Exception e){
            e.printStackTrace();
         }finally{
            // releases any system resources associated with the stream
            if(inStream!=null)
               inStream.close();
            if(bis!=null)
               bis.close();
      }	
   }
}

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

ABCDE  

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

  : 0
  : 0
A: 65
B: 66
C: 67