Java PushbackInputStream skip()方法
java.io.PushbackInputStream.skip(long n) 方法跳过并丢弃n个字节从此输入流中的数据。跳跃方法,可有多种原因,最终跳过一些较小的字节数,可能为零。如果n为负,则不跳过任何字节。 PushbackInputStream的跳跃方法首先跳过的字节推回缓冲区,如果有的话。然后,它调用基础输入流的skip()方法,如果更多的字节需要被跳过。返回实际跳过的字节数。
1 语法
public long skip(long n)
2 参数
n:要跳过的字节数。
3 返回值
此方法返回跳过的实际字节数。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.PushbackInputStream.skip(long n) 方法的例子
*/
import java.io.*;
public class Demo {
public static void main(String[] args) {
// declare a buffer and initialize its size:
byte[] arrByte = new byte[1024];
// create an array for our message
byte[] byteArray = new byte[]{'H', 'e', 'l', 'l', 'o',};
// create object of PushbackInputStream class for specified stream
InputStream is = new ByteArrayInputStream(byteArray);
PushbackInputStream pis = new PushbackInputStream(is);
try {
// skip a byte
pis.skip(1);
// read from the buffer one character at a time
for (int i = 0; i < byteArray.length - 1; i++) {
// read a char into our array
arrByte[i] = (byte) pis.read();
// display the read byte
System.out.print((char) arrByte[i]);
}
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
输出结果为:
ello
热门文章
优秀文章