int与byte、byte[]相互转换
一、int to byte范围在 -128 ~ 127之间可以直接转换,超出这个范围就乱了。int i = 127;byte b = (byte) i;Integer i = 127;i.byteValue();二、byte to int// byte to int (int仍有正负)static int byte2Int(byte byt){ // 直接强转 ...