位置:首頁 > Java技術 > Java.io包 > Java.io.BufferedInputStream.skip()方法實例

Java.io.BufferedInputStream.skip()方法實例

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