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


Java Java.io.PushbackInputStream.skip()用法及代码示例



描述

这个java.io.PushbackInputStream.skip(long n)方法跳过并从此输入流中丢弃 n 个字节的数据。由于各种原因,skip 方法最终可能会跳过一些较小数量的字节,可能为零。如果 n 为负,则不跳过任何字节。 PushbackInputStream 的 skip 方法首先跳过推送缓冲区中的字节(如果有)。如果需要跳过更多字节,它然后调用底层输入流的跳过方法。返回实际跳过的字节数。

声明

以下是声明java.io.PushbackInputStream.skip()方法。

public long skip(long n)

参数

n− 要跳过的字节数。

返回值

此方法返回跳过的实际字节数。

异常

IOException− 如果流不支持seek,或者流已经通过调用其close() 方法关闭,或者发生I/O 错误。

示例

下面的例子展示了使用java.io.PushbackInputStream.skip()方法。

package com.tutorialspoint;

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

相关用法


注:本文由纯净天空筛选整理自 Java.io.PushbackInputStream.skip() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。