//两个字节的方法
public static byte[] int2bytes(int n) {
int temp1 = 0,temp2=0;byte[] hex = new byte[2];
if(n < 256)
{
hex[1] = (byte) n;
}
else
{
temp1 = n & 0xff;
hex[1] = (byte)temp1;
temp2 = n >> 8;
hex[0] = (byte)temp2;
}
return hex;
}
//四个字节的方法
public static byte[] int2byte(int res) {
byte[] targets = new byte[4];
targets[0] = (byte) (res & 0xff);// 最低位
targets[1] = (byte) ((res >> 8) & 0xff);// 次低位
targets[2] = (byte) ((res >> 16) & 0xff);// 次高位
targets[3] = (byte) (res >>> 24);// 最高位,无符号右移。
return targets;
}
最后
以上就是年轻火最近收集整理的关于Java中10进制转byte[]的全部内容,更多相关Java中10进制转byte[]内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复