내 시도 :
public static byte[] toBytes(final int intVal, final int... intArray) {
if (intArray == null || (intArray.length == 0)) {
return ByteBuffer.allocate(4).putInt(intVal).array();
} else {
final ByteBuffer bb = ByteBuffer.allocate(4 + (intArray.length * 4)).putInt(intVal);
for (final int val : intArray) {
bb.putInt(val);
}
return bb.array();
}
}
그것으로 당신은 이것을 할 수 있습니다 :
byte[] fourBytes = toBytes(0x01020304);
byte[] eightBytes = toBytes(0x01020304, 0x05060708);
전체 클래스는 다음과 같습니다 : https://gist.github.com/superbob/6548493 , 반바지 또는 긴 초기화를 지원합니다
byte[] eightBytesAgain = toBytes(0x0102030405060708L);