Java中的 ByteArrayInputStream skip() 方法及示例
skip()方法是Java.io.ByteArrayInputStream的内置方法,它跳过输入流中的 arg 字节。如果流已接近尾声,则跳过较少的字节。
语法:
public long skip(long args)
参数:该函数接受一个强制参数args ,它指定要跳过的字节数
返回值:函数返回跳过的字节数。
Errors an Exceptions :当发生 I/O 错误时,该函数会引发IOException 。
下面是上述函数的实现:
方案一:
// 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
方案二:
// 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: Java/io/ByteArrayInputStream.html#skip(long)