Java.io.PushbackInputStream.skip()方法實例
java.io.PushbackInputStream.skip(long n) 方法跳過並丟棄n個字節從此輸入流中的數據。跳躍方法,可有多種原因,最終跳過一些較小的字節數,可能為零。如果n為負,則不跳過任何字節。 PushbackInputStream的跳躍方法首先跳過的字節推回緩衝區,如果有的話。然後,它調用基礎輸入流的skip()方法,如果更多的字節需要被跳過。返回實際跳過的字節數。
聲明
以下是java.io.PushbackInputStream.skip()方法的聲明
public long skip(long n)
參數
-
n -- 要跳過的字節數。
返回值
此方法返回實際跳過的字節數。
異常
-
IOException -- 如果該流不支持查找,或者該流已關閉通過調用close()方法,或者發生I/ O錯誤。
例子
下麵的示例演示java.io.PushbackInputStream.skip()方法的用法。
package com.yiibai; import java.io.*; public class PushbackInputStreamDemo { public static void main(String[] args) { // declare a buffer and initialize its size: byte[] arrByte = new byte[1024]; // create an array for our message byte[] byteArray = new byte[]{'H', 'e', 'l', 'l', 'o',}; // create object of PushbackInputStream class for specified stream InputStream is = new ByteArrayInputStream(byteArray); PushbackInputStream pis = new PushbackInputStream(is); try { // skip a byte pis.skip(1); // read from the buffer one character at a time for (int i = 0; i < byteArray.length - 1; i++) { // read a char into our array arrByte[i] = (byte) pis.read(); // display the read byte System.out.print((char) arrByte[i]); } } catch (Exception ex) { ex.printStackTrace(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
ello