skip()
方法skip()方法在java.io包中可用。
skip()方法用于从此LineNumberInputStream流中跳过给定数目的数据字节。
skip()方法是一种非静态方法,只能通过类对象访问,如果尝试使用类名访问该方法,则会收到错误消息。
skip()方法在跳过数据字节时可能会引发异常。
IOException:在执行过程中遇到任何输入/输出错误时,可能引发此异常。
语法:
public long skip(long number);
参数:
long number –表示要跳过的字节数。
返回值:
该方法的返回类型很长,它返回要跳过的确切字节数。
示例
//Java程序演示示例 //的long skip(long number)方法的说明 //LineNumberInputStream- import java.io.*; public class SkipOfLNIS { public static void main(String[] args) throws Exception { FileInputStream fis_stm = null; LineNumberInputStream line_stm = null; int val = 0; try { //实例化FileInputStream- fis_stm = new FileInputStream("D:\\includehelp.txt"); line_stm = new LineNumberInputStream(fis_stm); //循环阅读直到可用 //剩余字节数 while ((val = line_stm.read()) != -1) { //显示相应的char值 char ch = (char) val; //显示值ch- System.out.print("ch: " + ch + " :"); //通过使用skip(2)方法可以跳过 //来自line_stm的2个字节的char- long skip = line_stm.skip(2); System.out.println("line_stm.skip(2): " + skip); } } catch (Exception ex) { System.out.println(ex.toString()); } finally { //借助此块可以 //释放所有链接的必要资源 //与流 if (fis_stm != null) { fis_stm.close(); if (line_stm != null) { line_stm.close(); } } } } }
输出结果
ch: J :line_stm.skip(2): 2 ch: A :line_stm.skip(2): 2 ch: R :line_stm.skip(2): 2