三位数字出现
if(buf[i]<=0xf)
System.out.print("0");
System.out.print(Integer.toHexString(buf[i]&0xff)+" ");
if(count++%10==0)
System.out.println();
}为什么会出现0b7 0c5 0c8 0eb 0d7 数字
if(buf[i]<=0xf)
System.out.print("0");
System.out.print(Integer.toHexString(buf[i]&0xff)+" ");
if(count++%10==0)
System.out.println();
}为什么会出现0b7 0c5 0c8 0eb 0d7 数字
2017-03-23
举报