12

我无法转换这样的东西:

byte[] b = new byte[] { 12, 24, 19, 17};

变成这样的东西:

float myfloatvalue = ?;

有人可以给我一个例子吗?

另外如何将浮点数转回字节?

4

3 回答 3

37

byte[]->float

ByteBuffer

byte[] b = new byte[]{12, 24, 19, 17};
float f =  ByteBuffer.wrap(b).getFloat();

float->byte[]

逆运算(知道上面的结果):

float f =  1.1715392E-31f;
byte[] b = ByteBuffer.allocate(4).putFloat(f).array();  //[12, 24, 19, 17]
于 2013-01-13T22:08:32.780 回答
18

byte[]-> float,你可以这样做:

byte[] b = new byte[] { 12, 24, 19, 17};
float myfloatvalue = ByteBuffer.wrap(b).getFloat();

这是使用ByteBuffer.allocatefor conversion float->的替代方法byte[]

int bits = Float.floatToIntBits(myFloat);
byte[] bytes = new byte[4];
bytes[0] = (byte)(bits & 0xff);
bytes[1] = (byte)((bits >> 8) & 0xff);
bytes[2] = (byte)((bits >> 16) & 0xff);
bytes[3] = (byte)((bits >> 24) & 0xff);
于 2013-01-13T22:08:39.157 回答
2

将字节转换为 int 并使用 Float.intBitsToFloat()

http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Float.html#intBitsToFloat(int )

于 2013-01-13T22:07:37.113 回答