java 中怎样将 bytes 转换为 long 类型
方法有以下三种:
1、不借助其他任何已经有的类,直接进行转换。
2、借助java.nio.ByteBuffer实现,只要将byte[]转换为ByteBuffer就可以实现所有primitive类型的数据读取。
3、借助java.io.DataInputStream实现,只要将byte[]转换为DataInputStream就可以实现所有primitive类型的数据读取。
具体步骤如下:
1、/**
* 将字节数组转为long<br>
* 如果input为null,或offset指定的剩余数组长度不足8字节则抛出异常
* @param input
* @param offset 起始偏移量
* @param littleEndian 输入数组是否小端模式
* @return
*/
public static long longFrom8Bytes(byte[] input, int offset, boolean littleEndian){ long value=0; // 循环读取每个字节通过移位运算完成long的8个字节拼装
for(int count=0;count<8;++count){ int shift=(littleEndian?count:(7-count))<<3;
value |=((long)0xff<< shift) & ((long)input[offset+count] << shift);
} return value;
}
2、/**
* 利用 {@link java.nio.ByteBuffer}实现byte[]转long
* @param input
* @param offset
* @param littleEndian 输入数组是否小端模式
* @return
*/
public static long bytesToLong(byte[] input, int offset, boolean littleEndian) {
// 将byte[] 封装为 ByteBuffer
ByteBuffer buffer = ByteBuffer.wrap(input,offset,8); if(littleEndian){ // ByteBuffer.order(ByteOrder) 方法指定字节序,即大小端模式(BIG_ENDIAN/LITTLE_ENDIAN)
// ByteBuffer 默认为大端(BIG_ENDIAN)模式
buffer.order(ByteOrder.LITTLE_ENDIAN);
} return buffer.getLong();
}
3、public void test() throws IOException {
String input="net.gdface.facelog.dborm.person.FlPersonBeanBase";
byte[] md5 = getMD5(input.getBytes());
System.out.printf("md5 [%s]\n",toHex(md5));
// 三种方式运算结果对比验证
DataInputStream dataInput = new DataInputStream(new ByteArrayInputStream(md5));
long l1 = dataInput.readLong();
long l2 = dataInput.readLong();
System.out.printf("l1=0x%x l2=0x%x,DataInputStream\n", l1,l2);
long ln1 = bytesToLong(md5,0, false);
long ln2 = bytesToLong(md5,8, false);
System.out.printf("ln1=0x%x ln2=0x%x,ByteBuffer\n", ln1,ln2);
long ll1 = longFrom8Bytes(md5,0, false);
long ll2 = longFrom8Bytes(md5,8, false);
System.out.printf("ll1=0x%x ll2=0x%x\n", ll1,ll2);
}
}
所以,可以这么干
Long l1 = 100L;
long l2 = l1;
int i1 = (int)l2;
Integer i2 = i1;
另一种根据Integer的api有Integer.valueOf()和new Integer();可以接受int或者String类型
把Long类型转换成int或者String类型就可以了
Long l1 = 100L;
String str = l1.toString();
Integer i1 = Integer.valueOf(str);
Integer i2 = new Integer(str);
int i3 = i2;
public class Test {
private static ByteBuffer buffer = ByteBuffer.allocate(8);
public static void main(String[] args) {
//测试 int 转 byte
int int0 = 234;
byte byte0 = intToByte(int0);
System.out.println("byte0=" + byte0);//byte0=-22
//测试 byte 转 int
int int1 = byteToInt(byte0);
System.out.println("int1=" + int1);//int1=234
//测试 int 转 byte 数组
int int2 = 1417;
byte[] bytesInt = intToByteArray(int2);
System.out.println("bytesInt=" + bytesInt);//bytesInt=[B@de6ced
//测试 byte 数组转 int
int int3 = byteArrayToInt(bytesInt);
System.out.println("int3=" + int3);//int3=1417
//测试 long 转 byte 数组
long long1 = 2223;
byte[] bytesLong = longToBytes(long1);
System.out.println("bytes=" + bytesLong);//bytes=[B@c17164
//测试 byte 数组 转 long
long long2 = bytesToLong(bytesLong);
System.out.println("long2=" + long2);//long2=2223
}
//byte 与 int 的相互转换
public static byte intToByte(int x) {
return (byte) x;
}
public static int byteToInt(byte b) {
//Java 总是把 byte 当做有符处理;我们可以通过将其和 0xFF 进行二进制与得到它的无符值
return b & 0xFF;
}
//byte 数组与 int 的相互转换
public static int byteArrayToInt(byte[] b) {
return b[3] & 0xFF |
(b[2] & 0xFF) << 8 |
(b[1] & 0xFF) << 16 |
(b[0] & 0xFF) << 24;
}
public static byte[] intToByteArray(int a) {
return new byte[] {
(byte) ((a >> 24) & 0xFF),
(byte) ((a >> 16) & 0xFF),
(byte) ((a >> 8) & 0xFF),
(byte) (a & 0xFF)
};
}
//byte 数组与 long 的相互转换
public static byte[] longToBytes(long x) {
buffer.putLong(0, x);
return buffer.array();
}
public static long bytesToLong(byte[] bytes) {
buffer.put(bytes, 0, bytes.length);
buffer.flip();//need flip
return buffer.getLong();
}
}