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


Java ByteArrayInputStream skip()用法及代码示例


skip()方法是Java.io.ByteArrayInputStream的内置方法,它会跳过输入流中的arg字节。如果流已到达末尾,则跳过较少的字节。

用法

public long skip(long args)

参数:该函数接受一个强制性参数args,该参数指定要跳过的字节数


返回值:该函数返回跳过字节数。

错误和异常:发生I /O错误时,该函数将引发IOException。

下面是上述函数的实现:

示例1:

// Java program to implement 
// the above function 
import java.io.*; 
  
public class Main { 
    public static void main(String[] args) throws Exception 
    { 
  
        byte[] buf = { 5, 6, 7, 8, 9 }; 
  
        // Create new byte array input stream 
        ByteArrayInputStream exam 
            = new ByteArrayInputStream(buf); 
  
        // print bytes 
        System.out.println(exam.read()); 
  
        // Skips 1 element 
        exam.skip(1); 
  
        System.out.println(exam.read()); 
        System.out.println(exam.read()); 
    } 
}
输出:
5
7
8

示例2:

// Java program to implement 
// the above function 
import java.io.*; 
  
public class Main { 
    public static void main(String[] args) throws Exception 
    { 
  
        byte[] buf = { 1, 2, 3, 4, 5, 6, 7, 8 }; 
  
        // Create new byte array input stream 
        ByteArrayInputStream exam 
            = new ByteArrayInputStream(buf); 
  
        // print bytes 
        System.out.println(exam.read()); 
  
        // Skips 3 elements 
        exam.skip(3); 
  
        System.out.println(exam.read()); 
        System.out.println(exam.read()); 
    } 
}
输出:
1
5
6

参考: https://docs.oracle.com/javase/10/docs/api/java/io/ByteArrayInputStream.html#skip(long)



相关用法


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