Java.io.PushbackInputStream.skip()方法实例
java.io.PushbackInputStream.skip(long n) 方法跳过并丢弃n个字节从此输入流中的数据。跳跃方法,可有多种原因,最终跳过一些较小的字节数,可能为零。如果n为负,则不跳过任何字节。 PushbackInputStream的跳跃方法首先跳过的字节推回缓冲区,如果有的话。然后,它调用基础输入流的skip()方法,如果更多的字节需要被跳过。返回实际跳过的字节数。
声明
以下是java.io.PushbackInputStream.skip()方法的声明
public long skip(long n)
参数
-
n -- 要跳过的字节数。
返回值
此方法返回实际跳过的字节数。
异常
-
IOException -- 如果该流不支持查找,或者该流已关闭通过调用close()方法,或者发生I/ O错误。
例子
下面的示例演示java.io.PushbackInputStream.skip()方法的用法。
package com.yiibai; import java.io.*; public class PushbackInputStreamDemo { 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