當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java 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.tutorialspoint;

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

相關用法


注:本文由純淨天空篩選整理自 Java.io.Reader.reset() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。