Java.io.BufferedInputStream.available()方法範例


java.io.BufferedInputStream.available() 方法返回從輸入流中讀取不受阻塞,輸入流方法的下一次呼叫的剩餘位元組數。

宣告

以下是java.io.BufferedInputStream.available()方法的宣告

public int available()

返回值

此方法返回的位元組數保持從此輸入流中讀取而不阻塞。

異常

  • IOException -- -- 如果發生I/O錯誤.

例子

下面的範例演示java.io.BufferedInputStream.available()方法的用法。

package com.yiibai;

import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;

public class BufferedInputStreamDemo {
   public static void main(String[] args) throws Exception {

      InputStream inStream = null;
      BufferedInputStream bis = null;

      try{
         // open input stream test.txt for reading purpose.
         inStream = new FileInputStream("c:/test.txt");

         // input stream is converted to buffered input stream
         bis = new BufferedInputStream(inStream);      

         // read until a single byte is available
         while( bis.available() > 0 )
         {
            // get the number of bytes available
            Integer nBytes = bis.available();
            System.out.println("Available bytes = " + nBytes );

            // read next available character
            char ch =  (char)bis.read();

            // print the read character.
            System.out.println("The character read = " + ch );
         }
      }catch(Exception e){
         e.printStackTrace();
      }finally{
         
         // releases any system resources associated with the stream
         if(inStream!=null)
            inStream.close();
         if(bis!=null)
            bis.close();
      }
   }
}

假設有一個文字檔案c:/ test.txt,它具有以下內容。該檔案將被用作輸入我們的範例程式:

ABCDE 

編譯和執行上面的程式,這將產生以下結果:

Available bytes = 5
The character read = A
Available bytes = 4
The character read = B
Available bytes = 3
The character read = C
Available bytes = 2
The character read = D
Available bytes = 1
The character read = E