byte[] toByteArray(int value) {
return ByteBuffer.allocate(4).putInt(value).array();
}
byte[] toByteArray(int value) {
return new byte[] {
(byte)(value >> 24),
(byte)(value >> 16),
(byte)(value >> 8),
(byte)value };
}
int fromByteArray(byte[] bytes) {
return ByteBuffer.wrap(bytes).getInt();
}
// packing an array of 4 bytes to an int, big endian, minimal parentheses
// operator precedence: <<, &, |
// when operators of equal precedence (here bitwise OR) appear in the same expression, they are evaluated from left to right
int fromByteArray(byte[] bytes) {
return bytes[0] << 24 | (bytes[1] & 0xFF) << 16 | (bytes[2] & 0xFF) << 8 | (bytes[3] & 0xFF);
}
// packing an array of 4 bytes to an int, big endian, clean code
int fromByteArray(byte[] bytes) {
return ((bytes[0] & 0xFF) << 24) |
((bytes[1] & 0xFF) << 16) |
((bytes[2] & 0xFF) << 8 ) |
((bytes[3] & 0xFF) << 0 );
}
เมื่อทำการบรรจุไบต์ที่เซ็นชื่อลงใน int แต่ละไบต์จะต้องถูกปิดบังเนื่องจากมีการขยายสัญญาณเป็น 32 บิต (แทนที่จะเป็นศูนย์ขยาย) เนื่องจากกฎการเลื่อนเลขคณิต (อธิบายไว้ใน JLS, การแปลงและการส่งเสริมการขาย)
มีปริศนาที่น่าสนใจเกี่ยวกับเรื่องนี้ที่อธิบายไว้ใน Java Puzzlers ("ความยินดียิ่งใหญ่ในทุกๆทาง") โดย Joshua Bloch และ Neal Gafter เมื่อเปรียบเทียบค่าไบต์กับค่า int ไบต์จะถูกขยายสัญญาณไปยัง int จากนั้นค่านี้จะถูกเปรียบเทียบกับค่าอื่น ๆ
byte[] bytes = (…)
if (bytes[0] == 0xFF) {
// dead code, bytes[0] is in the range [-128,127] and thus never equal to 255
}
โปรดทราบว่าประเภทตัวเลขทั้งหมดได้รับการลงนามใน Java โดยมีข้อยกเว้นในการถ่านเป็นประเภทจำนวนเต็ม 16 บิตที่ไม่ได้ลงชื่อ