I tried to convert a double to its binary representation, but using this Long.toBinaryString(Double.doubleToRawLongBits(d)) doesn\'t help, since I have large nu
Long.toBinaryString(Double.doubleToRawLongBits(d))
You can use Double.toHexString(d) and then transform the hexadecimal string into a binary one using a for loop and a StringBuilder.