java 中怎样将 bytes 转换为 long 类型

 我来答
追忆小土豆
2017-08-30 · TA获得超过7739个赞
知道大有可为答主
回答量:4890
采纳率:0%
帮助的人:1470万
展开全部
public class Test {
private static ByteBuffer buffer = ByteBuffer.allocate(8);
public static void main(String[] args) {

//测试 int 转 byte
int int0 = 234;
byte byte0 = intToByte(int0);
System.out.println("byte0=" + byte0);//byte0=-22
//测试 byte 转 int
int int1 = byteToInt(byte0);
System.out.println("int1=" + int1);//int1=234

//测试 int 转 byte 数组
int int2 = 1417;
byte[] bytesInt = intToByteArray(int2);
System.out.println("bytesInt=" + bytesInt);//bytesInt=[B@de6ced
//测试 byte 数组转 int
int int3 = byteArrayToInt(bytesInt);
System.out.println("int3=" + int3);//int3=1417

//测试 long 转 byte 数组
long long1 = 2223;
byte[] bytesLong = longToBytes(long1);
System.out.println("bytes=" + bytesLong);//bytes=[B@c17164
//测试 byte 数组 转 long
long long2 = bytesToLong(bytesLong);
System.out.println("long2=" + long2);//long2=2223
}

//byte 与 int 的相互转换
public static byte intToByte(int x) {
return (byte) x;
}

public static int byteToInt(byte b) {
//Java 总是把 byte 当做有符处理;我们可以通过将其和 0xFF 进行二进制与得到它的无符值
return b & 0xFF;
}

//byte 数组与 int 的相互转换
public static int byteArrayToInt(byte[] b) {
return b[3] & 0xFF |
(b[2] & 0xFF) << 8 |
(b[1] & 0xFF) << 16 |
(b[0] & 0xFF) << 24;
}

public static byte[] intToByteArray(int a) {
return new byte[] {
(byte) ((a >> 24) & 0xFF),
(byte) ((a >> 16) & 0xFF),
(byte) ((a >> 8) & 0xFF),
(byte) (a & 0xFF)
};
}
//byte 数组与 long 的相互转换
public static byte[] longToBytes(long x) {
buffer.putLong(0, x);
return buffer.array();
}
public static long bytesToLong(byte[] bytes) {
buffer.put(bytes, 0, bytes.length);
buffer.flip();//need flip
return buffer.getLong();
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
a303015136
2017-08-27 · 超过56用户采纳过TA的回答
知道答主
回答量:217
采纳率:22%
帮助的人:62.2万
展开全部
强转吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式