2010. 6. 29. 17:22
public static int byteToShort(byte[] bytes) {
int newValue = 0;
newValue |= (((int)bytes[0])<<8)&0xFF00;
newValue |= (((int)bytes[1]))&0xFF;
return newValue;
}
int newValue = 0;
newValue |= (((int)bytes[0])<<8)&0xFF00;
newValue |= (((int)bytes[1]))&0xFF;
return newValue;
}
'java > util' 카테고리의 다른 글
[java] - float to byte array (1) | 2010.06.29 |
---|---|
[java] - byte array to float (0) | 2010.06.29 |
[jar] - jar 안의 특정 디렉토리의 파일 목록을 가져오고 싶을때.. (0) | 2010.06.29 |
[Reflection] - Value Object 로그 만들자 (0) | 2010.06.28 |
[XML] - Pretty XML print (0) | 2010.06.28 |