I have the following code:
OutputStreamBitWriter writer = new OutputStreamBitWriter(System.out);
writer.writeBit(1);
If I want to print the value or store it in a String, how do I do that?
|
You need to do something like this:
Now since I suspect this is homework, I'm not going to spoon-feed you the complete solution. But here's a hint: if you try to turn the bytes into a String, the chances are that it will contain non-printing characters. |
|||
|
|
|||||||||||||||
|
TransMogriFooObscurator, butOutputStreamBitWritergives me a pretty good idea of what the class is (even though a listing would have been better) – Sean Patrick Floyd Oct 10 '10 at 20:48