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


Java ByteArrayInputStream skip()用法及代碼示例


skip()方法是Java.io.ByteArrayInputStream的內置方法,它會跳過輸入流中的arg字節。如果流已到達末尾,則跳過較少的字節。

用法

public long skip(long args)

參數:該函數接受一個強製性參數args,該參數指定要跳過的字節數


返回值:該函數返回跳過字節數。

錯誤和異常:發生I /O錯誤時,該函數將引發IOException。

下麵是上述函數的實現:

示例1:

// Java program to implement 
// the above function 
import java.io.*; 
  
public class Main { 
    public static void main(String[] args) throws Exception 
    { 
  
        byte[] buf = { 5, 6, 7, 8, 9 }; 
  
        // Create new byte array input stream 
        ByteArrayInputStream exam 
            = new ByteArrayInputStream(buf); 
  
        // print bytes 
        System.out.println(exam.read()); 
  
        // Skips 1 element 
        exam.skip(1); 
  
        System.out.println(exam.read()); 
        System.out.println(exam.read()); 
    } 
}
輸出:
5
7
8

示例2:

// Java program to implement 
// the above function 
import java.io.*; 
  
public class Main { 
    public static void main(String[] args) throws Exception 
    { 
  
        byte[] buf = { 1, 2, 3, 4, 5, 6, 7, 8 }; 
  
        // Create new byte array input stream 
        ByteArrayInputStream exam 
            = new ByteArrayInputStream(buf); 
  
        // print bytes 
        System.out.println(exam.read()); 
  
        // Skips 3 elements 
        exam.skip(3); 
  
        System.out.println(exam.read()); 
        System.out.println(exam.read()); 
    } 
}
輸出:
1
5
6

參考: https://docs.oracle.com/javase/10/docs/api/java/io/ByteArrayInputStream.html#skip(long)



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 ByteArrayInputStream skip() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。