java byte数组与int,long,short,byte的转换实现方法
作者:jingxian 时间:2023-09-08 12:26:43
实例如下:
public class DataTypeChangeHelper {
/**
* 将一个单字节的byte转换成32位的int
*
* @param b
* byte
* @return convert result
*/
public static int unsignedByteToInt(byte b) {
return (int) b & 0xFF;
}
/**
* 将一个单字节的Byte转换成十六进制的数
*
* @param b
* byte
* @return convert result
*/
public static String byteToHex(byte b) {
int i = b & 0xFF;
return Integer.toHexString(i);
}
/**
* 将一个4byte的数组转换成32位的int
*
* @param buf
* bytes buffer
* @param byte[]中开始转换的位置
* @return convert result
*/
public static long unsigned4BytesToInt(byte[] buf, int pos) {
int firstByte = 0;
int secondByte = 0;
int thirdByte = 0;
int fourthByte = 0;
int index = pos;
firstByte = (0x000000FF & ((int) buf[index]));
secondByte = (0x000000FF & ((int) buf[index + 1]));
thirdByte = (0x000000FF & ((int) buf[index + 2]));
fourthByte = (0x000000FF & ((int) buf[index + 3]));
index = index + 4;
return ((long) (firstByte << 24 | secondByte << 16 | thirdByte << 8 | fourthByte)) & 0xFFFFFFFFL;
}
/**
* 将16位的short转换成byte数组
*
* @param s
* short
* @return byte[] 长度为2
* */
public static byte[] shortToByteArray(short s) {
byte[] targets = new byte[2];
for (int i = 0; i < 2; i++) {
int offset = (targets.length - 1 - i) * 8;
targets[i] = (byte) ((s >>> offset) & 0xff);
}
return targets;
}
/**
* 将32位整数转换成长度为4的byte数组
*
* @param s
* int
* @return byte[]
* */
public static byte[] intToByteArray(int s) {
byte[] targets = new byte[2];
for (int i = 0; i < 4; i++) {
int offset = (targets.length - 1 - i) * 8;
targets[i] = (byte) ((s >>> offset) & 0xff);
}
return targets;
}
/**
* long to byte[]
*
* @param s
* long
* @return byte[]
* */
public static byte[] longToByteArray(long s) {
byte[] targets = new byte[2];
for (int i = 0; i < 8; i++) {
int offset = (targets.length - 1 - i) * 8;
targets[i] = (byte) ((s >>> offset) & 0xff);
}
return targets;
}
/**32位int转byte[]*/
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;
}
/**
* 将长度为2的byte数组转换为16位int
*
* @param res
* byte[]
* @return int
* */
public static int byte2int(byte[] res) {
// res = InversionByte(res);
// 一个byte数据左移24位变成0x??000000,再右移8位变成0x00??0000
int targets = (res[0] & 0xff) | ((res[1] << 8) & 0xff00); // | 表示安位或
return targets;
}
}
标签:byte,short,int,long
0
投稿
猜你喜欢
jcrop 网页截图工具(插件)开发
2022-10-21 22:30:19
spring-boot中使用spring-boot-devtools的实现代码
2021-10-09 13:31:32
C++版本基于ros将文件夹中的图像转换为bag包
2021-11-13 07:15:59
SpringBoot通知机制的实现方式
2022-06-25 04:01:54
Android学习笔记--使用剪切板在Activity中传值示例代码
2022-12-21 13:43:58
SpringBoot+EasyPoi实现excel导出功能
2022-05-08 06:47:35
SpringBoot深入了解日志的使用
2023-01-06 15:40:34
解决Mybatis 大数据量的批量insert问题
2023-09-08 13:59:40
Android如何给按钮添加点击音效
2022-06-24 02:05:05
C# protobuf自动更新cs文件
2021-10-08 10:16:28
SpringBoot 导出数据生成excel文件返回方式
2023-09-01 11:29:27
MyBatis-Plus联表查询(Mybatis-Plus-Join)的功能实现
2023-11-25 03:24:33
关于java String中intern的深入讲解
2023-01-24 18:18:36
Java下http下载文件客户端和上传文件客户端实例代码
2021-09-09 16:52:11
C/C++ Crypto密码库调用的实现方法
2021-10-25 23:59:24
2022 最新 IntelliJ IDEA 详细配置步骤演示(推荐)
2021-11-20 21:05:48
java实现实时通信聊天程序
2023-10-18 09:08:06
springboot使用Mybatis-plus分页插件的案例详解
2023-10-27 13:47:43
C#中实现可变参数实例
2022-03-27 15:48:07
Android获取apk签名指纹的md5值(防止重新被打包)的实现方法
2023-06-23 04:26:12