Java.io.FilterWriter.available()方法實例
java.io.FilterWriter.available() 方法返回的字節可以從此輸入流不受阻塞地從此輸入流方法的下一次調用讀取的數量。
聲明
以下是java.io.FilterWriter.available()方法的聲明:
public int available()
參數
-
NA
返回值
該方法返回一個可以讀取的字節數。
異常
-
IOException -- 如果發生I/ O錯誤。
例子
下麵的示例演示java.io.FilterWriter.available()方法的用法。
package com.yiibai; import java.io.FileInputStream; import java.io.InputStream; public class InputStreamDemo { public static void main(String[] args) throws Exception { InputStream is = null; int i=0; char c; try{ // new input stream created is = new FileInputStream("C://test.txt"); // read till the end of the stream while((i=is.read())!=-1) { // convert integer to character c = (char)i; // print System.out.println("Character Read: "+c); } }catch(Exception e){ // if any I/O error occurs e.printStackTrace(); }finally{ // releases system resources associated with this stream if(is!=null) is.close(); } } }
假設我們有一個文本文件c:/ test.txt,它具有以下內容。該文件將被用作輸入到我們的示例程序:
ABCDEF
讓我們編譯和運行上麵的程序,這將產生以下結果:
Character Read: A Character Read: B Character Read: C Character Read: D Character Read: E Character Read: F