将整数转换为字节数组(Java)
由于Java不提供默认的方式来执行此操作,
将Integer转换为Byte数组的快速方法是什么?
例如0xAABBCCDD => {AA,BB,CC,DD}
看看ByteBuffer类。
ByteBuffer b = ByteBuffer.allocate(4); //b.order(ByteOrder.BIG_ENDIAN); // optional, the initial order of a byte buffer is always BIG_ENDIAN. b.putInt(0xAABBCCDD); byte[] result = b.array();
设置字节顺序可确保result[0] == 0xAA
, result[1] == 0xBB
, result[2] == 0xCC
和result[3] == 0xDD
。
或者,您可以手动执行此操作:
byte[] toBytes(int i) { byte[] result = new byte[4]; result[0] = (byte) (i >> 24); result[1] = (byte) (i >> 16); result[2] = (byte) (i >> 8); result[3] = (byte) (i /*>> 0*/); return result; }
虽然ByteBuffer
类被devise用于这种脏手的任务。 事实上,私有java.nio.Bits
定义了ByteBuffer.putInt()
使用的这些辅助方法:
private static byte int3(int x) { return (byte)(x >> 24); } private static byte int2(int x) { return (byte)(x >> 16); } private static byte int1(int x) { return (byte)(x >> 8); } private static byte int0(int x) { return (byte)(x >> 0); }
使用BigInteger
:
private byte[] bigIntToByteArray( final int i ) { BigInteger bigInt = BigInteger.valueOf(i); return bigInt.toByteArray(); }
使用DataOutputStream
:
private byte[] intToByteArray ( final int i ) throws IOException { ByteArrayOutputStream bos = new ByteArrayOutputStream(); DataOutputStream dos = new DataOutputStream(bos); dos.writeInt(i); dos.flush(); return bos.toByteArray(); }
使用ByteBuffer
:
public byte[] intToBytes( final int i ) { ByteBuffer bb = ByteBuffer.allocate(4); bb.putInt(i); return bb.array(); }
使用这个function它为我工作
public byte[] intToByteArray(int value) { return new byte[] { (byte)(value >>> 24), (byte)(value >>> 16), (byte)(value >>> 8), (byte)value}; }
它将int转换为一个字节值
如果你喜欢番石榴 ,你可以使用它的Ints
类:
对于int
→ byte[]
,使用toByteArray()
:
byte[] byteArray = Ints.toByteArray(0xAABBCCDD);
结果是{0xAA, 0xBB, 0xCC, 0xDD}
。
它的反向是从fromByteArray()
或fromBytes()
:
int intValue = Ints.fromByteArray(new byte[]{(byte) 0xAA, (byte) 0xBB, (byte) 0xCC, (byte) 0xDD}); int intValue = Ints.fromBytes((byte) 0xAA, (byte) 0xBB, (byte) 0xCC, (byte) 0xDD);
结果是0xAABBCCDD
。
你可以使用BigInteger
:
来自整数:
byte[] array = BigInteger.valueOf(0xAABBCCDD).toByteArray(); System.out.println(Arrays.toString(array)) // --> {-86, -69, -52, -35 }
返回的数组的大小是表示数字所需的大小,所以它可以是大小1,例如表示1。 但是,如果传递一个int,则大小不能超过四个字节。
来自string:
BigInteger v = new BigInteger("AABBCCDD", 16); byte[] array = v.toByteArray();
但是,如果第一个字节高于0x7F
(在这种情况下),则需要注意,BigInteger会将一个0x00字节插入到数组的开头。 这是区分正面和负面的价值所需要的。
static byte[] toBytes(int val, int bufferSize) { byte[] result = new byte[bufferSize]; for(int i = bufferSize - 1; i >= 0; i--) { result[i] = (byte) (val /*>> 0*/); val = (val >> 8); } return result; }
// by jordaoesa e samirtf – 最好的朋友JFL <3
这是我的解决scheme:
public void getBytes(int val) { byte[] bytes = new byte[Integer.BYTES]; for (int i = 0;i < bytes.length; i ++) { int j = val % Byte.MAX_VALUE; bytes[i] = (j == 0 ? Byte.MAX_VALUE : j); } }
我没有testing这个代码 – 请testing它。
在评论中写下结果