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


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


available()方法是Java.io.ByteArrayInputStream的內置方法,返回可以從此輸入流讀取(或跳過)的剩餘字節數。它告訴總數。輸入流中要讀取的字節數。

用法

public int available()

參數:該函數不接受任何參數。


返回值:該函數從要讀取的Input Strem返回總字節數。

下麵是上述函數的實現:

示例1:

// Java program to implement 
// the above function 
import java.io.*; 
  
public class Main { 
    public static void main(String[] args) throws Exception 
    { 
  
        // Array 
        byte[] buffer = { 71, 69, 69, 75, 83 }; 
  
        // Create InputStream 
        ByteArrayInputStream geek 
            = new ByteArrayInputStream(buffer); 
  
        // Use the function to get the number 
        // of available 
        int number = geek.available(); 
  
        // Print 
        System.out.println("Use of available() method : "
                           + number); 
    } 
}
輸出:
Use of available() method : 5

示例2:

// Java program to implement 
// the above function 
import java.io.*; 
  
public class Main { 
    public static void main(String[] args) throws Exception 
    { 
  
        // Array 
        byte[] buffer = { 1, 2, 3, 4 }; 
  
        // Create InputStream 
        ByteArrayInputStream geek 
            = new ByteArrayInputStream(buffer); 
  
        // Use the function to get the number 
        // of available 
        int number = geek.available(); 
  
        // Print 
        System.out.println("Use of available() method : "
                           + number); 
    } 
}
輸出:
Use of available() method : 4

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



相關用法


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