Java.io.FileInputStream.skip()方法實例
java.io.FileInputStream.skip(long n) 從輸入流中跳過並丟棄n個字節數據。
聲明
以下是java.io.FileInputStream.skip(long n) 方法的聲明:
public long skip(long n)
參數
-
n - 要跳過的字節數。
返回值
該方法返回的實際跳過的字節數。
異常
-
IOException - 如果發生I/ O錯誤,如果n為負,或者流不支持查找。
例子
下麵的示例演示java.io.FileInputStream.skip(long n) 方法的用法。
package com.yiibai; import java.io.IOException; import java.io.FileInputStream; public class FileInputStreamDemo { public static void main(String[] args) throws IOException { FileInputStream fis = null; int i=0; char c; try{ // create new file input stream fis = new FileInputStream("C://test.txt"); // skip bytes from file input stream fis.skip(4); // read bytes from this stream i = fis.read(); // converts integer to character c = (char)i; // prints System.out.print("Character read: "+c); }catch(Exception ex){ // if any error occurs ex.printStackTrace(); }finally{ // releases all system resources from the streams if(fis!=null) fis.close(); } } }
假設我們有一個文本文件c:/ test.txt,它具有以下內容。該文件將被用作輸入到我們的示例程序:
ABCDEF
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Character read: E