int、long、float类型的数组直接转化成byte类型的数组好像比较麻烦,可以借助缓冲区进行转换
int[] intNums={1,2,3,4,5,6};
ByteBuffer byteBuf=ByteBuffer.allocate(intNums.length*4);
IntBuffer intBuf=byteBuf.asIntBuffer();
intBuf.put(intNums);
byte[] array=byteBuf.array();
long、float类型的转化也一样的方式