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

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

 java.io.FilterInputStream.skip(long n) 方法從輸入流中跳過並丟棄n個字節數。

聲明

以下是java.io.FilterInputStream.skip(long n)方法的聲明:

public long skip(long n)

參數

  • n -- 要跳過的字節數。

返回值

該方法返回實際上跳過的字節數。

異常

  • IOException -- 如果發生任何I / O錯誤,或者該流不列入尋求支持。

例子

下麵的示例演示java.io.FilterInputStream.skip(long n)方法的用法。

package com.yiibai;

import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.FilterInputStream;
import java.io.IOException;
import java.io.InputStream;

public class FilterInputStreamDemo {
   public static void main(String[] args) throws Exception {
      
      InputStream is = null; 
      FilterInputStream fis = null;
      int i=0;
      char c;
      
      try{
         // create input streams
         is = new FileInputStream("C://test.txt");
         fis = new BufferedInputStream(is);
         
         while((i=fis.read())!=-1)
         {
            // converts integer to character
            c=(char)i;
            
            // skips 3 bytes
            fis.skip(3);
            
            // print
            System.out.println("Character read: "+c);
         }
      }catch(IOException e){
         
         // if any I/O error occurs
         e.printStackTrace();
      }finally{
         
         // releases any system resources associated with the stream
         if(is!=null)
            is.close();
         if(fis!=null)
            fis.close();
      }
   }
}

假設我們有一個文本文件c:/ test.txt,它具有以下內容。該文件將被用作輸入到我們的示例程序:

ABCDEF

讓我們編譯和運行上麵的程序,這將產生以下結果:

Character read: A
Character read: E