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


java.io.ByteArrayInputStream.read(byte[] b, int off, int len) 方法讀取當前輸入流中的資料的len個位元組到位元組陣列。read()方法不會進入阻塞

宣告

以下是java.io.ByteArrayInputStream.read(byte[] b, int off, int len) 方法的宣告:

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

引數

  • b -- 資料被讀入該緩衝

  • off -- 在目標陣列b的偏移開始位置

  • len -- 讀取的最大位元組數

返回值

讀入緩衝區的位元組數。返回-1,如果流已經達到了結束位置。

異常

  • NullPointerException -- 如是 b 為 null.

  • IndexOutOfBoundsException -- 如果len大於輸入流的偏移量length後,off為負,或len為負。

例子

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

package com.yiibai;

import java.io.ByteArrayInputStream;
import java.io.IOException;

public class ByteArrayInputStreamDemo {
   public static void main(String[] args) throws IOException {
      
      byte[] buf = {65, 66, 67, 68, 69};
      ByteArrayInputStream bais = null;
      
      try{
         
         // create new byte array input stream
         bais = new ByteArrayInputStream(buf);
      
         // create buffer
         byte[] b = new byte[4];
         int num = bais.read(b, 2, 2);
         
         // number of bytes read
         System.out.println("Bytes read: "+num);
         
         // for each byte in a buffer
         for (byte s :b)
         {
            // covert byte to char
            char c = (char)s;
            
            // prints byte
            System.out.print(s);
            
            if(s==0)
               
               // if byte is 0
               System.out.println(": Null");
            else
               
               // if byte is not 0
               System.out.println(": "+c);
         }
      }catch(Exception e){
         
         // if I/O error occurs
         e.printStackTrace();
      }finally{
         if(bais!=null)
            bais.close();
      }   
   }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Bytes read: 2
0: Null
0: Null
65: A
66: B