友情提示:
1、Java内部存储默认为大端MSB;
2、由于Java不存在无符号数,某些情况下可能需要对数据类型放大使用;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
public class ConvertUtils { /** * byte数组转int,小端 * @param bytes * @return */ public static int bytesToIntLittleEndian(byte[] bytes) { // byte数组中序号小的在右边 return bytes[0] & 0xFF | // (bytes[1] & 0xFF) << 8 | // (bytes[2] & 0xFF) << 16 | // (bytes[3] & 0xFF) << 24; // } /** * byte数组转int,大端 * @param bytes * @return */ public static int bytesToIntBigEndian(byte[] bytes) { // byte数组中序号大的在右边 return bytes[3] & 0xFF | // (bytes[2] & 0xFF) << 8 | // (bytes[1] & 0xFF) << 16 | // (bytes[0] & 0xFF) << 24; // } /** * int转byte数组,小端 * @param intValue * @return */ public static byte[] intToBytesLittleEndian(int intValue) { // byte数组中序号小的在右边 // 右边的数据放到byte数组中序号小的位置 byte[] bytes = new byte[4]; bytes[0] = (byte) (intValue & 0xff); bytes[1] = (byte) ((intValue >> Byte.SIZE) & 0xff); bytes[2] = (byte) ((intValue >> Byte.SIZE * 2) & 0xff); bytes[3] = (byte) ((intValue >> Byte.SIZE * 3) & 0xff); return bytes; } /** * int转byte数组,大端 * @param intValue * @return */ public static byte[] intToBytesBigEndian(int intValue) { // byte数组中序号大的在右边 // 右边的数据放到byte数组中序号大的位置 byte[] bytes = new byte[4]; bytes[3] = (byte) (intValue & 0xff); bytes[2] = (byte) ((intValue >> Byte.SIZE) & 0xff); bytes[1] = (byte) ((intValue >> Byte.SIZE * 2) & 0xff); bytes[0] = (byte) ((intValue >> Byte.SIZE * 3) & 0xff); return bytes; } /** * byte数组转short,小端 * @param bytes * @return */ public static short bytesToShortLittleEndian(byte[] bytes) { // byte数组中序号小的在右边 return (short) (bytes[0] & 0xFF | (bytes[1] & 0xFF) << 8); } /** * byte数组转short,大端 * @param bytes * @return */ public static short bytesToShortBigEndian(byte[] bytes) { // byte数组中序号大的在右边 return (short) (bytes[1] & 0xFF | (bytes[0] & 0xFF) << 8); } /** * short转byte数组,小端 * @param shortValue * @return */ public static byte[] shortToBytesLittleEndian(short shortValue) { // byte数组中序号小的在右边 // 右边的数据放到byte数组中序号小的位置 byte[] bytes = new byte[Short.BYTES]; bytes[0] = (byte) (shortValue & 0xff); bytes[1] = (byte) ((shortValue >> Byte.SIZE) & 0xff); return bytes; } /** * short转byte数组,大端 * @param shortValue * @return */ public static byte[] shortToBytesBigEndian(short shortValue) { // byte数组中序号大的在右边 // 右边的数据放到byte数组中序号大的位置 byte[] bytes = new byte[Short.BYTES]; bytes[1] = (byte) (shortValue & 0xff); bytes[0] = (byte) ((shortValue >> Byte.SIZE) & 0xff); return bytes; } /** * byte数组转long,小端 * @param bytes * @return */ public static long bytesToLongLittleEndian(byte[] bytes) { // byte数组中序号小的在右边 long values = 0; for (int i = (Long.BYTES - 1); i >= 0; i--) { values <<= Byte.SIZE; values |= (bytes[i] & 0xff); } return values; } /** * byte数组转long,大端 * @param bytes * @return */ public static long bytesToLongBigEndian(byte[] bytes) { // byte数组中序号大的在右边 long values = 0; for (int i = 0; i < Long.BYTES; i++) { values <<= Byte.SIZE; values |= (bytes[i] & 0xff); } return values; } /** * long转byte数组,小端 * @param longValue * @return */ public static byte[] longToBytesLittleEndian(long longValue) { // byte数组中序号小的在右边 // 右边的数据放到byte数组中序号小的位置 byte[] result = new byte[Long.BYTES]; for (int i = 0; i < result.length; i++) { result[i] = (byte) (longValue & 0xFF); longValue >>= Byte.SIZE; } return result; } /** * long转byte数组,大端 * @param longValue * @return */ public static byte[] longToBytesBigEndian(long longValue) { // byte数组中序号大的在右边 // 右边的数据放到byte数组中序号大的位置 byte[] result = new byte[Long.BYTES]; for (int i = (result.length - 1); i >= 0; i--) { result[i] = (byte) (longValue & 0xFF); longValue >>= Byte.SIZE; } return result; } } |