Java.io.FilterReader.read()方法實例
java.io.FilterReader.read(int readAheadLimit) 方法讀取單個字符,並返回一個介於0到65535之間的整數。
聲明
以下是java.io.FilterReader.read()方法的聲明:
public int read()
參數
- NA
返回值
此方法返回的字符讀,是一個介於0到65535之間的整數,如果已到達流的末尾則返回-1。
異常
- IOException -- 如果發生I/ O錯誤。
例子
下面的示例演示java.io.FilterReader.read()方法的用法。
package com.yiibai; import java.io.FilterReader; import java.io.Reader; import java.io.StringReader; public class FilterReaderDemo { public static void main(String[] args) throws Exception { FilterReader fr = null; Reader r = null; int i=0; char c; try{ // create new reader r = new StringReader("ABCDEF"); // create new filter reader fr = new FilterReader(r) { }; // read till the end of the stream while((i=fr.read())!=-1) { // converts 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(r!=null) r.close(); if(fr!=null) fr.close(); } } }
讓我們編譯和運行上面的程序,這將產生以下結果:
Character read: A Character read: B Character read: C Character read: D Character read: E Character read: F