java int转byte和long转byte的方法
程序员文章站
2024-03-12 13:53:14
在网络编程中,出于节约带宽或者编码的需要,通常需要以原生方式处理long和int,而不是转换为string。
public class byteorderut...
在网络编程中,出于节约带宽或者编码的需要,通常需要以原生方式处理long和int,而不是转换为string。
public class byteorderutils { public static byte[] int2byte(int res) { byte[] targets = new byte[4]; targets[3] = (byte) (res & 0xff);// 最低位 targets[2] = (byte) ((res >> 8) & 0xff);// 次低位 targets[1] = (byte) ((res >> 16) & 0xff);// 次高位 targets[0] = (byte) (res >>> 24);// 最高位,无符号右移。 return targets; } public static int bytearraytoint(byte[] b){ byte[] a = new byte[4]; int i = a.length - 1,j = b.length - 1; for (; i >= 0 ; i--,j--) {//从b的尾部(即int值的低位)开始copy数据 if(j >= 0) a[i] = b[j]; else a[i] = 0;//如果b.length不足4,则将高位补0 } int v0 = (a[0] & 0xff) << 24;//&0xff将byte值无差异转成int,避免java自动类型提升后,会保留高位的符号位 int v1 = (a[1] & 0xff) << 16; int v2 = (a[2] & 0xff) << 8; int v3 = (a[3] & 0xff) ; return v0 + v1 + v2 + v3; } public static byte[] long2byte(long res) { byte[] buffer = new byte[8]; for (int i = 0; i < 8; i++) { int offset = 64 - (i + 1) * 8; buffer[i] = (byte) ((res >> offset) & 0xff); } return buffer; } public static long bytearraytolong(byte[] b){ long values = 0; for (int i = 0; i < 8; i++) { values <<= 8; values|= (b[i] & 0xff); } return values; } }
以上就是小编为大家带来的java int转byte和long转byte的方法全部内容了,希望大家多多支持~
上一篇: Java访问Hadoop分布式文件系统HDFS的配置说明
下一篇: php 7新特性之类型申明详解
推荐阅读
-
java byte数组与int,long,short,byte的转换实现方法
-
java int转byte和long转byte的方法
-
在Java中int和byte[]的相互转换
-
在Java中int和byte[]的相互转换
-
Java中byte、byte数组与int、long的转换详解
-
Java中byte、byte数组与int、long的转换详解
-
Java利用移位运算将int型分解成四个byte型的方法
-
[转]java中byte转换int时为何与0xff进行与运算
-
[转]java中byte转换int时为何与0xff进行与运算
-
Java13-day04【Integer、int和String的相转、自动装箱和拆箱、Date、SimpleDateFormat、Calendar、异常、try...catch、throws】