Java.io.FilterReader.mark()方法实例
java.io.FilterReader.mark(int readAheadLimit) 方法标志流的当前位置。
声明
以下是java.io.FilterReader.mark(int readAheadLimit) 方法的声明:
public void mark(int readAheadLimit)
参数
-
readAheadLimit -- 在仍保留该标记的情况下被读取的字符数限制。
返回值
此方法不返回任何值。
异常
-
IOException -- 如果发生I/ O错误。
例子
下面的例子显示了java.io.FilterReader.mark(int readAheadLimit) 方法的用法。
package com.yiibai; import java.io.FilterReader; import java.io.IOException; 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; try{ // create new reader r = new StringReader("ABCDEF"); // create new filter reader fr = new FilterReader(r) { }; // reads and prints FilterReader System.out.println((char)fr.read()); System.out.println((char)fr.read()); // mark invoked at this position fr.mark(0); System.out.println("mark() invoked"); System.out.println((char)fr.read()); System.out.println((char)fr.read()); // reset() repositioned the stream to the mark fr.reset(); System.out.println("reset() invoked"); System.out.println((char)fr.read()); System.out.println((char)fr.read()); }catch(IOException 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(); } } }
让我们编译和运行上面的程序,这将产生以下结果:
A B mark() invoked C D reset() invoked C D