當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.PushbackInputStream.read()用法及代碼示例



描述

這個java.io.PushbackInputStream.read()方法從此輸入流中讀取下一個數據字節。值字節以 0 到 255 範圍內的 int 形式返回。如果由於已到達流末尾而沒有可用字節,則返回值 -1。此方法會阻塞,直到輸入數據可用、檢測到流結束或拋出異常為止。

此方法返回最近的 pushed-back 字節(如果有),否則調用其底層輸入流的 read 方法並返回該方法返回的任何值。

聲明

以下是聲明java.io.PushbackInputStream.read()方法。

public int read()

參數

NA

返回值

此方法返回數據的下一個字節,如果已到達流的末尾,則返回 -1。

異常

IOException- 如果這個輸入流已經通過調用它的 close() 方法關閉,或者發生了 I/O 錯誤。

示例

下麵的例子展示了使用java.io.PushbackInputStream.read()方法。

package com.tutorialspoint;

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

相關用法


注:本文由純淨天空篩選整理自 Java.io.PushbackInputStream.read() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。