This question already has answers here:
How to convert 4 bytes array to float in java
                                
                                    (2个答案)
                                
                        
                6年前关闭。
            
        

我想将我从套接字连接接收到的4元素字节数组转换为float。我在Google上搜索并尝试了几种方法,但无济于事。

更新
将字节数组转换为浮点数的正确方法是使用以下代码:

ByteBuffer.wrap(array).getFloat();

最佳答案

ByteBuffer.wrap(array).getFloat();

关于java - 将字节数组转换为浮点数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22250952/

10-09 04:56