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

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

java.io.StringReader.reset() 方法重置流為最新的標記,或以該字符串的開頭,如果它從來冇有被標記。

聲明

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

public void reset()

參數

  • NA

返回值

這個方法冇有返回值

異常

  • IOException -- 如果發生I/O錯誤

例子

下麵的示例演示java.io.StringReader.ready()方法的用法。

package com.yiibai;

import java.io.*;

public class StringReaderDemo {

   public static void main(String[] args) {

      String s = "Hello World";

      // create a new StringReader
      StringReader sr = new StringReader(s);

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

         // mark the reader at position 5 for maximum 6
         sr.mark(6);

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

         // reset back to marked position
         sr.reset();

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

         // close the stream
         sr.close();

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

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

Hello World World