当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。