- BitInputStream - Class in edu.msoe.jones.bitstream
-
A file input stream that reads a byte from a binary file then returns
a single integer at a time, representing a single bit as a 0 or 1.
- BitInputStream(InputStream) - Constructor for class edu.msoe.jones.bitstream.BitInputStream
-
Constructs a BitInputStream using the given InputStream
- BitOutputStream - Class in edu.msoe.jones.bitstream
-
A file outputStream stream that takes integer representations of bits (1s and 0s)
and writes them as bits to a file.
- BitOutputStream(OutputStream) - Constructor for class edu.msoe.jones.bitstream.BitOutputStream
-
Constructs a BitOutputStream using the given OutputStream.