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


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


Java中的ObjectInputStream類的available()方法返回在不阻塞流的情況下可以讀取的字節數。

用法

public int available()

參數:此方法不接受任何參數。


返回值:此方法返回可用字節數。

以下示例程序旨在說明上述方法:

示例1:

// Java program to illustrate 
// the above method 
  
import java.io.*; 
  
public class GFG { 
    public static void main(String[] args) throws Exception 
    { 
  
        FileOutputStream out 
            = new FileOutputStream("gopal.txt"); 
        ObjectOutputStream out1 
            = new ObjectOutputStream(out); 
  
        // write something in the file 
        out1.writeUTF("Geeks For Geeks"); 
  
        // Flushes the Stream 
        out1.flush(); 
  
        // Closes the stream 
        out1.close(); 
  
        // create an ObjectInputStream 
        // for the file we created before 
        ObjectInputStream example 
            = new ObjectInputStream( 
                new FileInputStream( 
                    "gopal.txt")); 
  
        // Print the number of bytes available 
        System.out.println(example.available()); 
        example.close(); 
    } 
}

輸出:

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



相關用法


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