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