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


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


Java中的PushbackInputStream類的markSupported()方法用於驗證mark()和reset()方法的可支持性。由於此類不支持mark()和reset(),因此始終返回false。

用法:

public boolean markSupported()

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

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

返回值:此方法返回false,因為此類不支持mark()和reset()。



異常:此方法不會引發任何異常。

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

程序1:

// Java program to illustrate 
// PushbackInputStream markSupported() 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); 
  
        boolean b 
            = pushbackInputStr.markSupported(); 
  
        System.out.println(b); 
    } 
}
輸出:
false

程序2:

// Java program to illustrate 
// PushbackInputStream markSupported() 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); 
  
        boolean b 
            = pushbackInputStr.markSupported(); 
  
        System.out.println(b); 
    } 
}
輸出:
false

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




相關用法


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