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


Java DataOutputStream writeBoolean()用法及代码示例


DataOutputStream类writeBoolean()方法

  • writeBoolean() 方法可在java.io包。
  • writeBoolean() 方法用于将给定的布尔字节写入基本输出流,因此写入的变量计数器在成功执行时加 1。
  • writeBoolean() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • writeBoolean() 方法可能在写入布尔值时抛出异常。
    IOException:在获取任何输入/输出错误时可能会抛出此异常。

用法:

    public final void writeBoolean(boolean val);

参数:

  • boolean val– 表示要写入基本数据输出流的布尔值。

返回值:

该方法的返回类型是void,它什么都不返回。

例:

// Java program to demonstrate the example 
// of void writeBoolean(boolean val) method 
// of DataOutputStream

import java.io.*;

public class WriteBooleanOfDOS {
 public static void main(String[] args) throws Exception {
  ByteArrayOutputStream baos_stm = null;
  DataOutputStream dos_stm = null;

  boolean[] bool = {
   false,
   false,
   true,
   false
  };

  try {
   // Instantiates ByteArrayOutputStream, DataOutputStream
   baos_stm = new ByteArrayOutputStream();
   dos_stm = new DataOutputStream(baos_stm);

   for (boolean val:bool) {
    // By using writeBoolean() method isto write
    // boolean value from the given bool array
    // to the dos_stm stream i.e. o represents
    // false and 1 represents true
    dos_stm.writeBoolean(val);
   }

   // By using toByArray() method isto
   // convert the stream baos_stm to byte 
   // array
   byte[] by = baos_stm.toByteArray();

   // Loop to display each byte to the
   // baos_stm data till its end

   for (byte val:by) {
    // Display byte
    System.out.println("dos_stm.writeBoolean():" + val);
   }
  } catch (Exception ex) {
   System.out.println(ex.toString());
  } finally {
   // this block is to free all necessary system 
   // resources linked with the stream

   if (baos_stm != null)
    baos_stm.close();

   if (dos_stm != null)
    dos_stm.close();
  }
 }
}

输出

dos_stm.writeBoolean():0
dos_stm.writeBoolean():0
dos_stm.writeBoolean():1
dos_stm.writeBoolean():0


相关用法


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