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


Java PushbackInputStream reset()用法及代碼示例


Java中的PushbackInputStream類的reset()方法用於將蒸汽重置到調用mark()方法的位置。此方法對PushbackInputStream不執行任何操作。

用法:

public void reset()
           throws IOException

覆蓋:此方法覆蓋FilterInputStream類的reset()方法。

參數:此方法不接受任何參數。

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



異常:每當調用此方法時,此方法都會引發IOException。

以下示例程序旨在說明IO包中的PushbackInputStream類的reset()方法:

程序1:

// Java program to illustrate 
// PushbackInputStream reset() method 
  
import java.io.*; 
  
public class GFG { 
    public static void main(String[] args) 
        throws IOException 
    { 
  
        // Create an array 
        byte[] byteArray 
            = new byte[] { 'G', 'E', 'E', 
                           'K', 'S' }; 
  
        // Create inputStream 
        InputStream inputStr 
            = new ByteArrayInputStream(byteArray); 
  
        // Create object of 
        // PushbackInputStream 
        PushbackInputStream pushbackInputStr 
            = new PushbackInputStream(inputStr); 
  
        for (int i = 0; i < byteArray.length; i++) { 
            // Read the character 
            System.out.print( 
                (char)pushbackInputStr.read()); 
        } 
  
        // Revoke reset() but it does nothing 
        pushbackInputStr.reset(); 
    } 
}
輸出:

Exception in thread “main” java.io.IOException:mark/reset not supported
GEEKS

程序2:

// Java program to illustrate 
// PushbackInputStream reset() method 
  
import java.io.*; 
  
public class GFG { 
    public static void main(String[] args) 
        throws IOException 
    { 
  
        // Create an array 
        byte[] byteArray 
            = new byte[] { 'H', 'E', 'L', 
                           'L', 'O' }; 
  
        // Create inputStream 
        InputStream inputStr 
            = new ByteArrayInputStream(byteArray); 
  
        // Create object of 
        // PushbackInputStream 
        PushbackInputStream pushbackInputStr 
            = new PushbackInputStream(inputStr); 
  
        // Revoke reset() 
        pushbackInputStr.reset(); 
  
        for (int i = 0; i < byteArray.length; i++) { 
            // Read the character 
            System.out.print( 
                (char)pushbackInputStr.read()); 
        } 
    } 
}
輸出:

Exception in thread “main” java.io.IOException:mark/reset not supported

參考文獻:
https://docs.oracle.com/javase/10/docs/api/java/io/PushbackInputStream.html#reset()




相關用法


注:本文由純淨天空篩選整理自pp_pankaj大神的英文原創作品 PushbackInputStream reset() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。