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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。