Question: above question for java programming. I implement class BitOutputStream to Serializable. Implement a class named BitOutputStream, as shown below, for writing bits to an output

above question for java programming. I
implement class BitOutputStream to Serializable.
Implement a class named BitOutputStream, as shown below, for writing bits to an output stream. The writeBit(char bit) method stores the bit in a byte variable. When you create a BitOutputStrea, the byte is empty. After invoking writeBit('1'), the byte becomes 00000001. After invoking writeBit("0101"), the byte becomes 00010101. The firest three bits are not filled yet. When a byte is full, it is sent to the output stream. Now the byte is reset to empty. You must close the stream by invoking the close() method. If the byte is neither empty nor full, the close() method first fills the zeros to make a full 8 bits in the byte, and then outputs the byte and closed the stream. Write a test program that sends the bits 0 1000 0100 1000 0100 1101 to the file named Assignment04.dat BitOutputStream +BitOutputStream(file: File) +writeBit(char bit): void +writeBit(String bit): void +close(): void Output: When I execute your code I would like to see this display in Eclipse:
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
