java.io.PushbackInputStream.read(byte[] b,int off,int len)方法實例
java.io.PushbackInputStream.read(byte[] b,int off,int len) 方法讀取最多len個從這個輸入流中數據的字節到字節數組。該方法首先讀取任何推回字節;在這之後,如果大於len字節少已讀那麼它會讀取從底層輸入流。如果len不為零,則該方法阻塞,直到輸入最少1個字節是可用的;否則,不讀取任何字節並返回0。
聲明
以下是java.io.PushbackInputStream.read()方法的聲明
public int read(byte[] b,int off,int len)
參數
-
b --被讀出緩衝器中的數據。
-
off -- 在目標數組b偏移的開始
-
len -- 讀出的最大字節數。
返回值
此方法返回讀入緩衝區的總字節數,或如果冇有更多的數據,因為數據流的末尾已到達則返回-1。
異常
-
NullPointerException -- 如果b是null.
-
IndexOutOfBoundsException --如果off為負,len為負,或len大於中b.length- off
-
IOException -- 下麵的示例演示java.io.PushbackInputStream.read()方法的用法。
例子
下麵的示例演示java.io.PushbackInputStream.read()方法的用法。
package com.yiibai; import java.io.*; public class PushbackInputStreamDemo { public static void main(String[] args) { // declare a buffer and initialize its size: byte[] arrByte = new byte[1024]; // create an array for our message byte[] byteArray = new byte[]{'H', 'e', 'l', 'l', 'o'}; // create object of PushbackInputStream class for specified stream InputStream is = new ByteArrayInputStream(byteArray); PushbackInputStream pis = new PushbackInputStream(is); try { // read a char into our array pis.read(arrByte, 0, 3); // print arrByte for (int i = 0; i < 3; i++) { System.out.print((char) arrByte[i]); } } catch (Exception ex) { ex.printStackTrace(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
Hel