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


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


Java中的PushbackInputStream類的skip(long n)方法用於跳過並丟棄此輸入流中的n個字節的數據。此方法首先跳過推回緩衝區中的字節,然後調用主輸入流的skip方法。它返回跳過的實際字節數。

用法:

public long skip(long n)
           throws IOException

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

參數:此方法接受一個參數n,該參數代表要跳過的字節數。

返回值:此方法返回跳過的實際字節數。



異常:如果已通過調用close()方法關閉流,或者發生了I /O錯誤,則此方法將引發IOException。

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

程序1:

// Java program to illustrate 
// PushbackInputStream skip(long) 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); 
  
        // Revoke skip() 
        pushbackInputStr.skip(2); 
  
        for (int i = 0; i < byteArray.length - 2; i++) { 
            // Read the character 
            System.out.print( 
                (char)pushbackInputStr.read()); 
        } 
    } 
}
輸出:
EKS

程序2:

// Java program to illustrate 
// PushbackInputStream skip(long) 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', 
                           'F', 'O', 'R', 'G', 'E', 
                           'E', 'K', 'S' }; 
  
        // Create inputStream 
        InputStream inputStr 
            = new ByteArrayInputStream(byteArray); 
  
        // Create object of 
        // PushbackInputStream 
        PushbackInputStream pushbackInputStr 
            = new PushbackInputStream(inputStr); 
  
        // Revoke skip() 
        pushbackInputStr.skip(8); 
  
        for (int i = 0; i < byteArray.length - 8; i++) { 
            // Read the character 
            System.out.print( 
                (char)pushbackInputStr.read()); 
        } 
    } 
}
輸出:
GEEKS

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




相關用法


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