位置:首页 > 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