foreach取buf里面的每一个byte以后,为什么还要&0xff,一个byte不是已经8bit了吗
for(byte b:buf){
System.out.print(Integer.toHexString(b & 0xff)+" ");
}
for(byte b:buf){
System.out.print(Integer.toHexString(b & 0xff)+" ");
}
2017-01-05
举报