1、在使用tcp协议传输数据时,使用到的 Int 数据的工具类方法
//将 Int 数据转换成字节数组
public static byte[] intToByteArray(int data){
byte[] result = new byte[4];
result[0] = (byte)((data >> 24) & 0xFF);
result[1] = (byte)((data >> 16) & 0xFF);
result[2] = (byte)((data >> 8) & 0xFF);
result[3] = (byte)(data & 0xFF);
return result;
}
//将4个字节的字节数组转换成 Int 数据
public static int byteArrayToInt(byte[] bytes){
int value = 0;
for(int i = 0; i < 4; i++){
value += (bytes[i] & 0xFF) << (8*(3-i));
}
return value;
}
时间: 2024-11-07 22:26:19