Duplicar posible:
Convert integer into byte array (Java)Java - ¿Convertir int a Byte Array de 4 bytes?
necesito para almacenar la longitud de un tampón, en una matriz de bytes 4 bytes grande.
pseudo código:
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;
}
¿Cuál sería la mejor manera de lograr esto? Teniendo en cuenta que debo convertir esa matriz de bytes a un número entero más tarde.
Tome un vistazo a esto: http://stackoverflow.com/questions/5399798/byte-array-and-int-conversion-in-java – TacB0sS