hi i have this kind of array
int[] arrayint = new int[32];
and it contains
arrayint[0] = 99
arrayint[1] = 121
arrayint[2] = 99
arrayint[3] = 66
...
is there a simple way to copy that integer array into a byte array like i want to make this byte array
byte[] streambit;
and it should be the same to the arrayint value
i want to be like this the output
streambit[0] = 99
streambit[1] = 121
streambit[2] = 99
streambit[3] = 66
...