This will do it:
result[5] = (byte) (value & 0xff); // least significant "byte"
result[6] = (byte) ((value & 0xff00) >> 8); // most significant "byte"
I usually use bit masks - maybe they're not needed. The first line selects the lower 8 bits, the second line selects the upper 8 bits and shifts the bits 8 bit positions to the right. This is equal to a division by 28.
This is the "trick" behind:
(I) LSB
01010101 10101010 // input
& 00000000 11111111 // first mask 0x00ff
-----------------
00000000 10101010 // result - now cast to byte
(II) MSB
01010101 10101010 // input
& 11111111 00000000 // second mask 0xff00
-----------------
01010101 00000000 // result -
>>>>>>>> // "shift" operation, 8 positions to the right
-----------------
00000000 01010101 // result - mow cast to byte
To sum it up do the following calculation:
byte msb = result[6];
byte lsb = result[5];
int result = (msb << 8) + lsb; // shift the msb bits 8 positions to the left