Given
private int width = 400;
private byte [] data = new byte [2];
I want to split the integer \"width\" into two bytes and load data[0]
Using simple bitwise operations:
data[0] = (byte) (width & 0xFF);
data[1] = (byte) ((width >> 8) & 0xFF);
How it works:
& 0xFF
masks all but the lowest eight bits.>> 8
discards the lowest 8 bits by moving all bits 8 places to the right.int
and return an int
, which is a bigger data type than byte
. The case is safe, since all non-zero bits will fit in the byte
. For more information, see Conversions and Promotions.Edit: Taylor L correctly remarks that though >>
works in this case, it may yield incorrect results if you generalize this code to four bytes (since in Java an int
is 32 bits). In that case, it's better to use >>>
instead of >>
. For more information, see the Java tutorial on Bitwise and Bit Shift Operators.