在网络通信中,经常会遇到从二进制数据流中提取浮点数,以及将浮点数转换成二进制数据流的情况,在JAVA中可按如下方式操作:
public static void main(String[] args)
{
float testFloatData = -256.12f;
int testIntData = 1111110334;
System.out.println(Float.floatToRawIntBits(testFloatData));
System.out.println(Float.intBitsToFloat(testIntData));
}
C/C++语言中,可直接使用指针操作。
int main(void)
{
float test_float_data = -256.12f ;
int test_int_data = 1111110334;
printf("%d\n",*(int*)(&test_float_data));
printf("%f\n",*(float*)(&test_int_data));
}
python中,直接使用struct可进行二进制操作,连大小端都可以直接一次型处理好,强大简单粗暴,最佳选择,没有之一
import struct
test_float_data = -256.12
temp_float_bytes = struct.pack("f",test_float_data)
print(temp_float_bytes)
test_int_bytes = b'\x0f\x3c\x7b\x33'
test_int_data = struct.unpack("i",test_int_bytes)[0]
print(test_int_data)