可能的复制品:
将整数转换为字节数组(Java)
我需要存储一个缓冲区的长度,在一个字节数组4字节大。
伪代码:
private byte[] convertLengthToByte(byte[] myBuffer)
{
int length = myBuffer.length;
byte[] byteLength = new byte[4];
//here is where I need to convert the int length to a byte array
byteLength = length.toByteArray;
return byteLength;
}
实现这一目标的最佳方式是什么?记住,稍后我必须将字节数组转换回整数。