我正在尝试将数字转换为字节数组形式。有一个简单的技巧:
int input = number;
byte[] bytes = ByteBuffer.allocate(4).putInt(input).array();
for(int i = 0 ; i < bytes.length ; i++)
System.out.println(bytes[i]);
像魅力一样工作,除非我超过整数值383(字节:0 0 1 127),当它写入文件时,它会自动产生一个整数值为319(字节:0 0 1 63)的数组: / p>
BufferedWriter out;
for(int i = 0 ; i < input.length ; i++)
out.write(input[i]);
有解决方法吗?