概述
//两个字节的方法
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[]所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复