当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java PushbackReader reset()用法及代码示例


Java中的PushbackReader类的reset()方法用于重置Stream。对于PushbackReader,此方法始终会引发异常,因为PushbackReader不支持此方法。

用法:

public void reset()

参数:此方法不接受任何参数。


返回值:此方法不返回任何值。

异常:由于不支持reset()方法,因此该方法总是抛出IOException。

下面的方法说明了reset()方法的用法方式:

示例1:

// Java program to demonstrate 
// PushbackReader reset() method 
  
import java.io.*; 
import java.util.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        try { 
            // Initializing a StringReader 
            // and PushbackReader 
            String s = "GeeksForGeeks"; 
  
            StringReader stringReader 
                = new StringReader(s); 
            PushbackReader pushbackReader 
                = new PushbackReader(stringReader); 
  
            // reset the stream position 
            pushbackReader.reset(); 
  
            // Close the stream using reset() 
            pushbackReader.close(); 
            System.out.println("Stream Closed."); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
java.io.IOException: mark/reset not supported

示例2:

// Java program to demonstrate 
// PushbackReader reset() method 
  
import java.io.*; 
import java.util.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        try { 
            // Initializing a StringReader 
            // and PushbackReader 
            String s = "GFG"; 
  
            StringReader stringReader 
                = new StringReader(s); 
            PushbackReader pushbackReader 
                = new PushbackReader(stringReader); 
  
            // reset the stream position 
            pushbackReader.reset(); 
  
            // Close the stream 
            pushbackReader.close(); 
            System.out.println("Stream Closed."); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
java.io.IOException: mark/reset not supported

参考: https://docs.oracle.com/javase/9/docs/api/java/io/PushbackReader.html#reset–



相关用法


注:本文由纯净天空筛选整理自srinam大神的英文原创作品 PushbackReader reset() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。