I need to convert 0.5 in base 10 to base 2 (0.1). I have tried using
Double.doubleToRawLongBits(0.5)
and it returns 4602678819172646912 which I guess is in hex, but it does not make sense to me.
|
|
Multiply you number by 2^n, convert to an BigInteger, convert to binary String, add a decimal point at position n (from right to left). Example (quick & ++dirty):
|
|||
|
|
|
No. 4602678819172646912 is in dec, hex is 0x3fe0000000000000. To dismantle that:
s is the sign bit, exponent is the exponent shifted by 2^9 (hence this exponent means -1), mantissa is the xxx part of the number 1.xxx (1. is implied). Therefore, this number is 1.000...*2^-1, which is 0.5. Note that this describes the "normal" numbers only, so no zeros, denormals, NaNs or infinities |
||||
|
|
This is decimal for |
|||||
|
|
Do you want to convert the decimal string to floating-point binary or to a binary string? If the former, just use valueOf(); if the latter, use valueOf() followed by toString() or printf(). |
|||
|
|
|
My original post wasn't helpful -- will think about it some more. |
|||||||||||
|
|
0.1 is NOT a binary representation of 0.5 Java will represent 0.5 using IEEE 754, as specified on the Java Language Specification. |
|||||
|