java.io.BufferedInputStream.skip(long) 方法跳過n個位元組的緩衝輸入流資料。位元組數跳過返回的id長。對於負n,則不跳過任何位元組。
緩衝輸入skip方法建立被讀入,直到n個位元組被讀取或流的末尾一個位元組陣列。
以下是java.io.BufferedInputStream.skip(long n) 方法的宣告
public long skip(long n)
n -- 要跳過的位元組數。
返回跳過的實際位元組數。
IOException -- 如果流不支援查詢,或者發生其他I/O錯誤。
下面的範例演示java.io.BufferedInputStream.skip(long n) 方法的用法。
package com.yiibai; import java.io.BufferedInputStream; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; public class BufferedInputStreamDemo { public static void main(String[] args) throws Exception { InputStream is =null; BufferedInputStream bis = null; try { // open input stream test.txt for reading purpose. is = new FileInputStream("C:/test.txt"); // input stream is converted to buffered input stream bis = new BufferedInputStream(is); // read until a single byte is available while(bis.available()>0) { // skip single byte from the stream bis.skip(1); // read next available byte and convert to char char c = (char)bis.read(); // print character System.out.print(" " + c); } } catch (IOException e) { e.printStackTrace(); }finally{ // releases resources from the streams if(is!=null) is.close(); if(bis!=null) bis.close(); } } }
假設我們有一個文字檔案c:/ test.txt,它具有以下內容。該檔案將被用作輸入在範例程式:
ABCDEFGHIJKLMNOPQRSTUVWXYZ
讓我們來編譯和執行上面的程式,這將產生以下結果:
B D F H J L N P R T V X Z