Java ByteArrayInputStream skip()方法
java.io.ByteArrayInputStream.skip(long n) 用于从输入流中跳过x个输入字节。
1 语法
public long skip(long n)
2 参数
n:要跳过的字节数
3 返回值
此方法返回跳过的实际字节数。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.ByteArrayInputStream.skip(long n)方法的例子
*/
import java.io.ByteArrayInputStream;
import java.io.IOException;
public class Demo {
public static void main(String[] args) throws IOException {
byte[] buf = {65, 66, 67, 68, 69};
ByteArrayInputStream bais = null;
try {
// create new byte array input stream
bais = new ByteArrayInputStream(buf);
int value = 0;
// read till the end of the stream
while((value = bais.read())!=-1) {
// skip single byte
bais.skip(1);
System.out.println(value);
}
} catch(Exception e) {
// if I/O error occurs
e.printStackTrace();
} finally {
if(bais!=null)
bais.close();
}
}
}
输出结果为:
65
67
69
热门文章
优秀文章