Java.io.DataOutputStream.writeBoolean() Method
Advertisements
Description
The java.io.BufferedInputStream.writeBoolean(boolean v) method writes the specified source byte to the underlying output stream. The counter written is incremented by 1 on successful invocation.
Declaration
Following is the declaration for java.io.DataOutputStream.writeBoolean(boolean v) method:
public final void writeBoolean(boolean v)
Parameters
b -- A boolean value to be written to the underlying stream.
Return Value
This method does not return any value.
Exception
IOException -- If an I/O error occurs.
Example
The following example shows the usage of java.io.DataOutputStream.writeBoolean(boolean v) method.
package com.tutorialspoint;
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();
}
}
}
Let us compile and run the above program, this will produce the following result:
100111