byte[] toByteArray(int value) {
return ByteBuffer.allocate(4).putInt(value).array();
}
byte[] toByteArray(int value) {
return new byte[] {
(byte)(value >> 24),
(byte)(value >> 16),
(byte)(value >> 8),
(byte)value };
}
int fromByteArray(byte[] bytes) {
return ByteBuffer.wrap(bytes).getInt();
}
// packing an array of 4 bytes to an int, big endian, minimal parentheses
// operator precedence: <<, &, |
// when operators of equal precedence (here bitwise OR) appear in the same expression, they are evaluated from left to right
int fromByteArray(byte[] bytes) {
return bytes[0] << 24 | (bytes[1] & 0xFF) << 16 | (bytes[2] & 0xFF) << 8 | (bytes[3] & 0xFF);
}
// packing an array of 4 bytes to an int, big endian, clean code
int fromByteArray(byte[] bytes) {
return ((bytes[0] & 0xFF) << 24) |
((bytes[1] & 0xFF) << 16) |
((bytes[2] & 0xFF) << 8 ) |
((bytes[3] & 0xFF) << 0 );
}
Podczas pakowania bajtów ze znakiem w int, każdy bajt musi być zamaskowany, ponieważ jest rozszerzany do 32 bitów (a nie rozszerzany o zero) ze względu na arytmetyczną regułę promocji (opisaną w JLS, Conversions and Promotions).
Jest z tym związana interesująca łamigłówka opisana w Java Puzzlers („A Big Delight in Every Byte”) autorstwa Joshua Blocha i Neala Gaftera. Podczas porównywania wartości bajtu z wartością int, bajt jest rozszerzany ze znakiem do int, a następnie ta wartość jest porównywana z drugą wartością int
byte[] bytes = (…)
if (bytes[0] == 0xFF) {
// dead code, bytes[0] is in the range [-128,127] and thus never equal to 255
}
Należy zauważyć, że wszystkie typy liczbowe są podpisane w języku Java, z wyjątkiem typu char będącego 16-bitową liczbą całkowitą bez znaku.