有什么可以帮助我将十六进制值转换为IEEE 754 32位值吗?
答案 0 :(得分:0)
public static double longBitsToDouble(long bits)
返回对应的double值 到给定的位表示。该 论证被认为是一个 表示浮点数 根据IEEE 754的值 浮点“双格式”位 布局。
参数: bits - any long integer.
退货: the double floating-point value with the same bit pattern.
答案 1 :(得分:0)
JDK 6 Double
类中有几种方法可用。请看一下Javadoc of the Double class。