import java.io.*;
public class foo {
public static void main(String[] args) {
try {
DataInputStream input = new DataInputStream(new FileInputStream(
"data.dat"));
while (input.available() > 0) {
String hex = Integer.toHexString(input.readByte()); //I think this is where the problem is
System.out.print(hex + ' ');
}
} catch (IOException e) {
}
}
}
输出 -
ffffff89 50 4e 47 d a 1a a 0 0 0 d 49 48 44 52 0 0 0... (continues)
输出大多是正确的。我无法弄清楚这些ffffff在我的输出中的位置。并且单个单个字符也缺少它们的0。 d应显示为0D
答案 0 :(得分:2)
input.readByte()
返回一个带符号的字节;当该字节的最高位为1时,它被解释为负数,Integer.toString
符号 - 将其扩展为int。
使用Integer.toString
代替String.format("%02x", input.readByte() & 0xFF)
,它将字节解释为无符号并强制使用两个十六进制数字。