바이트 관련 동작

1.정 수 를 두 바이트 배열 로 변환 합 니 다.
public static byte[] unsignedShortToByte2(int s) {
     byte[] targets = new byte[2];
     targets[0] = (byte) (s & 0xFF);
     targets[1] = (byte) (s >> 8 & 0xFF);
     return targets;
}

2.두 바이트 배열 을 정수 로 변환 합 니 다.
정수
int i = (4 & 0xFF) | (5 & 0xFF) << 8;
     :BigInteger value = new BigInteger(new byte[]{5,4});

좋은 웹페이지 즐겨찾기