當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.BufferedInputStream.skip()用法及代碼示例



描述

這個java.io.BufferedInputStream.skip(long)方法從緩衝的輸入流中跳過 n 個字節的數據。跳過的字節數 id 返回為long.對於負 n,不跳過任何字節。

的跳過方法BufferedInputStream創建一個字節數組,該數組將被讀入,直到讀取 n 個字節或到達流的末尾。

聲明

以下是聲明java.io.BufferedInputStream.skip(long n)方法。

public long skip(long n)

參數

n- 要跳過的字節數。

返回值

返回要跳過的實際字節數。

異常

IOException− 如果流不支持seek,或者發生其他I/O 錯誤。

示例

下麵的例子展示了 java.io.BufferedInputStream.skip(long n) 方法的用法。

package com.tutorialspoint;

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

相關用法


注:本文由純淨天空篩選整理自 Java.io.BufferedInputStream.skip() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。