Java.io.LineNumberInputStream.skip()方法實例
java.io.LineNumberInputStream.skip(long n) 從此輸入流中跳過並丟棄n個字節的數據。
聲明
以下是java.io.LineNumberInputStream.skip(long n)方法的聲明:
public long skip(long n)
參數
-
n -- 要跳過的字節數。
返回值
該方法返回實際跳過的字節數。
異常
-
IOException -- 如果發生I/O錯誤.
例子
下麵的示例演示java.io.LineNumberInputStream.skip(long n)方法的用法。
package com.yiibai; import java.io.FileInputStream; import java.io.IOException; import java.io.LineNumberInputStream; public class LineNumberInputStreamDemo { public static void main(String[] args) throws IOException { LineNumberInputStream lnis = null; FileInputStream fis =null; int i; char c; try{ // create new input stream fis = new FileInputStream("C:/test.txt"); lnis = new LineNumberInputStream(fis); // read till the end of the file while((i=lnis.read())!=-1) { // converts int to char c=(char)i; // prints System.out.println(c); // skips one byte lnis.skip(1); } }catch(Exception e){ // if any error occurs e.printStackTrace(); }finally{ // closes the stream and releases any system resources if(fis!=null) fis.close(); if(lnis!=null) lnis.close(); } } }
假設我們有一個文本文件c:/ test.txt,它具有以下內容。該文件將被用作輸入到我們的示例程序:
ABCDE
讓我們編譯和運行上麵的程序,這將產生以下結果:
A
C
E