问题描述
- 如何把字节数组转换成 long 型?
-
我需要转换一个 size 为 4 的byte[]
为 long 型。我在java.io.Bits
页面找到一个byteArrayToLong(byte_array)
函数,但是不能在程序中运行。
还有什么方法可以转换呢?
解决方案
搜一下,答案还是很多的:
//byte数组转成long
public static long byteToLong(byte[] b) {
long s = 0;
long s0 = b[0] & 0xff;// 最低位
long s1 = b[1] & 0xff;
long s2 = b[2] & 0xff;
long s3 = b[3] & 0xff;
long s4 = b[4] & 0xff;// 最低位
long s5 = b[5] & 0xff;
long s6 = b[6] & 0xff;
long s7 = b[7] & 0xff;
// s0不变
s1 <<= 8;
s2 <<= 16;
s3 <<= 24;
s4 <<= 8 * 4;
s5 <<= 8 * 5;
s6 <<= 8 * 6;
s7 <<= 8 * 7;
s = s0 | s1 | s2 | s3 | s4 | s5 | s6 | s7;
return s;
}
时间: 2024-09-28 00:15:56