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


Java BufferedInputStream skip()用法及代码示例


BufferedInputStream类skip()方法

  • skip() 方法可在java.io包。
  • skip() 方法用于从该 BufferedInputStream 跳过给定字节数的内容 (n_bytes)。
  • skip() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • skip() 方法可能会在跳过字节时抛出异常。
    IOException: 执行输入/输出操作时可能会抛出此异常或un-supports seek()。

用法:

    public long skip(long n_bytes);

参数:

  • long n_bytes– 表示要跳过的字节数。

返回值:

该方法的返回类型是long,它返回要跳过的 n_bytes(即字节数)。

例:

// Java program to demonstrate the example 
// of long skip(long n_bytes) method of 
// BufferedInputStream

import java.io.*;

public class demo {
    public static void main(String[] args) throws Exception {
        // To open text file by using 
        // FileInputStream
        FileInputStream fis = new FileInputStream("e:/includehelp.txt");

        // By using BufferedInputStream() isto change
        // the stream fis into buff_str
        BufferedInputStream buff_str = new BufferedInputStream(fis);

        // By using available() method is to
        // return the no. of bytes to be left 
        // for reading
        Integer n_byte = buff_str.available();
        System.out.println("Left avail bytes = " + n_byte);

        // Read character from the stream
        char ch1 = (char) buff_str.read();
        char ch2 = (char) buff_str.read();
        char ch3 = (char) buff_str.read();
        char ch4 = (char) buff_str.read();

        System.out.println("ch1:" + ch1);
        System.out.println("ch2:" + ch2);
        System.out.println("ch3:" + ch3);
        System.out.println("ch4:" + ch4);

        // It skip 1 bytes of data
        // from the stream  
        buff_str.skip(1);

        char ch = (char) buff_str.read();
        System.out.println("ch:" + ch);

        fis.close();
        buff_str.close();
    }
}

输出

Left avail bytes = 33
ch1:H
ch2:e
ch3:l
ch4:l
ch:.


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java BufferedInputStream skip() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。