如何在Java中将十六进制字符串转换为float?

如何在Java中将十六进制字符串转换为单精度浮点数?

例如,如何实现:

浮点数f = HexStringToFloat(“ BF800000”); // f现在应包含-1.0

我问这个是因为我尝试过:

float f = (float)(-1.0);

String s = String.format("%08x", Float.floatToRawIntBits(f));

f = Float.intBitsToFloat(Integer.valueOf(s,16).intValue());

但是我得到以下异常:

java.lang.NumberFormatException:对于输入字符串:“ bf800000”

回答:

public class Test {

public static void main (String[] args) {

String myString = "BF800000";

Long i = Long.parseLong(myString, 16);

Float f = Float.intBitsToFloat(i.intValue());

System.out.println(f);

System.out.println(Integer.toHexString(Float.floatToIntBits(f)));

}

}

以上是 如何在Java中将十六进制字符串转换为float? 的全部内容, 来源链接: utcz.com/qa/430333.html

回到顶部