Java.io.PushbackInputStream.available() 方法

  • 描述

    Java.io.PushbackInputStream.available()方法返回可从该输入流不被此输入流的方法的下一次调用无阻塞读取(或跳过)的字节数的估计值。下一次调用可能是同一个线程或另一个线程。单次读取或跳过这么多字节不会阻塞,但可能读取或跳过更少的字节。
  • 声明

    以下是protected void available()方法的声明。
     public int available()
  • 参数

    不适用。
  • 返回值

    此方法返回可以在不阻塞的情况下从输入流中读取(或跳过)的字节数。
  • 异常

    IOException - 如果此输入流已通过调用其 close() 方法关闭,或发生 I/O 错误。
  • 例子

    以下示例显示java.io.PushbackInputStream.available()方法的用法。
     
    package com.jc2182;
    
    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'};
    
          try {
             // create object of PushbackInputStream class for specified stream
             InputStream is = new ByteArrayInputStream(byteArray);
             PushbackInputStream pis = new PushbackInputStream(is);
    
             // check how many bytes are available
             System.out.println("" + pis.available());
    
             // 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();
          }
       }
    }
    
    让我们编译并运行以上程序,这将产生以下结果-
     
    5
    Hello