位置:首頁 > Java技術 > Java.io包 > Java.io.Reader.reset()方法實例

Java.io.Reader.reset()方法實例

java.io.Reader.reset() 方法重置流。如果流已被標記,然後嘗試進行標記,以重新定位。如果該流未被標注,然後嘗試將其複位在適當的特定流的一些方法,例如通過將其重新定位到其起始點。

聲明

以下是java.io.Reader.reset()方法的聲明

public void reset()

參數

  • NA

返回值

此方法不返回任何值。

異常

  • IOException -- 如果流仍未標記,或如果標記已無效,或如果該流不支持的reset(),或者發生其他I/O錯誤

例子

下麵的示例演示java.io.Reader.reset()方法的用法。

package com.yiibai;

import java.io.*;

public class ReaderDemo {

   public static void main(String[] args) {

      String s = "Hello World";

      // create a new StringReader
      Reader reader = new StringReader(s);

      try {
         // read the first five chars
         for (int i = 0; i < 5; i++) {
            char c = (char) reader.read();
            System.out.print("" + c);
         }

         // mark current position for maximum of 10 characters
         reader.mark(10);

         // read five more chars
         for (int i = 0; i < 6; i++) {
            char c = (char) reader.read();
            System.out.print("" + c);
         }

         // reset back to the marked position
         reader.reset();

         // change line
         System.out.println();

         // read six more chars
         for (int i = 0; i < 6; i++) {
            char c = (char) reader.read();
            System.out.print("" + c);
         }

         // close the stream
         reader.close();

      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

Hello World
 World