位置:首页 > Java技术 > Java.io包 > Java.io.DataOutputStream.writeBoolean()方法实例

Java.io.DataOutputStream.writeBoolean()方法实例

java.io.BufferedInputStream.writeBoolean(boolean v) 方法写入指定的源字节到基础输出流。成功调用写入计数器加1递增。

声明

以下是java.io.DataOutputStream.writeBoolean(boolean v)方法的声明:

public final void writeBoolean(boolean v)

参数

  • b -- 一个布尔值写入基础流。

返回值

此方法不返回任何值。

异常

  • IOException --如果发生I/ O错误。

例子

下面的示例演示java.io.DataOutputStream.writeBoolean(boolean v) 方法的用法。

package com.yiibai;

import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;

public class DataOutputStreamDemo {
   public static void main(String[] args) throws IOException {
      
      ByteArrayOutputStream baos = null;
      DataOutputStream dos = null;
      boolean[] bools = {true, false, false, true, true, true};
      
      try{
         // create byte array output stream
         baos = new ByteArrayOutputStream();
         
         // create data output stream
         dos = new DataOutputStream(baos);
         
         // write to the stream from boolean array
         for(boolean bool: bools)
         {
            dos.writeBoolean(bool);
         }
         // flushes bytes to underlying output stream
         dos.flush();
   
         // for each byte in the baos buffer content
         for(byte b:baos.toByteArray())
         {   
            // print character
            System.out.print(b);
         }
      }catch(Exception e){
         // if any error occurs
         e.printStackTrace();
      }finally{
         
         // releases all system resources from the streams
         if(baos!=null)
            baos.close();
         if(dos!=null)
            dos.close();
      }
   }
}

让我们编译和运行上面的程序,这将产生以下结果:

100111