Java.io.PushbackInputStream.read()方法實例
**java.io.PushbackInputStream.read()**方法讀取當前輸入流中數據的下一個字節。則返回該值的字節,一個介於0到255之間的整數。 如果沒有可用的字節,因爲流的末尾已到達,則返回值-1。此方法一直阻塞在輸入數據可用,該流的末尾被檢測到,或者拋出一個異常。此方法返回最近推回字節,如果存在,否則調用它的底層輸入流,並返回read()方法的值。
聲明
以下是java.io.PushbackInputStream.read()方法的聲明
public int read()
參數
- NA
返回值
此方法返回下一個數據字節,或-1,如果流的末尾已到達。
異常
- IOException -- 如果此輸入流已關閉通過調用它的close()方法,或者發生I/ O錯誤。
例子
下面的示例演示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 from the buffer one character at a time for (int i = 0; i < byteArray.length; i++) { // read a char into our array arrByte[i] = (byte) pis.read(); // display the read byte System.out.print((char) arrByte[i]); } } catch (Exception ex) { ex.printStackTrace(); } } }
讓我們編譯和運行上面的程序,這將產生以下結果:
Hello