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


Java ObjectInputStream readBoolean()用法及代码示例


Java中的ObjectInputStream类的readBoolean()方法从流中读取一个布尔值。

用法

public boolean readBoolean()

参数:此方法不接受任何参数。


返回值:此方法返回已读取的布尔值。

错误和异常:该函数引发两个异常,如下所述:

  • EOFException:如果到达文件末尾,则抛出该函数。
  • IOException:如果发生I /O错误,则抛出该函数。

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

示例1:

// Java program to illustrate 
// the above method 
  
import java.io.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        try { 
  
            // create a new file 
            // with an ObjectOutputStream 
            FileOutputStream out 
                = new FileOutputStream("gopal.txt"); 
            ObjectOutputStream out1 
                = new ObjectOutputStream(out); 
  
            // write 
            out1.writeUTF("Geeks for Geeks"); 
  
            // Flushes the stream 
            out1.flush(); 
  
            // create an ObjectInputStream 
            // for the file 
            ObjectInputStream example 
                = new ObjectInputStream( 
                    new FileInputStream("gopal.txt")); 
  
            // Read from the stream 
            for (int i = 0; i < example.available();) { 
                System.out.print("" + (char)example.read()); 
            } 
        } 
        catch (Exception ex) { 
            ex.printStackTrace(); 
        } 
    } 
}

输出:

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



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 ObjectInputStream readBoolean() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。