I need to convert numbers, positive and negative, into binary format - so, 2 into "00000010", and -2 into "11111110", for example. I don't need more than 12 bits or so, so if the string is longer than that I can just trim off the leading sign bits. It seems like Integer.toBinaryString() will do positive numbers, but is there one that can do negatives?
| |||
|
feedback
|
|
If you take the rightmost 12 characters, you have the bottom 12 bits, as required. | |||
|
feedback
|