Java.io.LineNumberInputStream.reset()方法實例
java.io.LineNumberInputStream.reset() 重新定位此流,以當時的makr方法最後調用這個輸入流中的位置。
聲明
以下是java.io.LineNumberInputStream.reset()方法的聲明:
public void reset()
參數
-
NA
返回值
該方法不返回任何值。
異常
-
IOException -- 如果發生I/O錯誤
例子
下麵的示例演示java.io.LineNumberInputStream.reset()方法的用法。
package com.yiibai; import java.io.FileInputStream; import java.io.IOException; import java.io.LineNumberInputStream; public class LineNumberInputStreamDemo { public static void main(String[] args) throws IOException { LineNumberInputStream lnis = null; FileInputStream fis =null; try{ // create new input streams fis = new FileInputStream("C:/test.txt"); lnis = new LineNumberInputStream(fis); // reads and prints data from input stream System.out.println((char)lnis.read()); System.out.println((char)lnis.read()); // mark invoked at this position lnis.mark(0); System.out.println("mark() invoked"); System.out.println((char)lnis.read()); System.out.println((char)lnis.read()); // if this input stream supports mark() an reset() if(lnis.markSupported()) { // reset() repositioned the stream to the mark lnis.reset(); System.out.println("reset() invoked"); System.out.println((char)lnis.read()); System.out.println((char)lnis.read()); } }catch(Exception e){ // if any error occurs e.printStackTrace(); }finally{ // closes the stream and releases any system resources if(fis!=null) fis.close(); if(lnis!=null) lnis.close(); } } }
假設我們有一個文本文件c:/ test.txt,它具有以下內容。該文件將被用作輸入到我們的示例程序:
ABCDE
讓我們編譯和運行上麵的程序,這將產生以下結果:
A B mark() invoked C D