List of utility methods to do Byte Array Create
byte[] | toBytes(int integer) to Bytes byte[] result = new byte[4]; toBytes(integer, result, 0); return result; |
byte[] | toBytes(int intValue) Returns a four byte array representation of the specified integer. byte[] res = new byte[4]; res[0] = (byte) (intValue >>> 24); res[1] = (byte) ((intValue >>> 16) & 0xFF); res[2] = (byte) ((intValue >>> 8) & 0xFF); res[3] = (byte) (intValue & 0xFF); return res; |
byte[] | toBytes(int is) to Bytes byte[] bytes = new byte[4]; for (int i = 0; i < 4; i++) { bytes[3 - i] = (byte) ((is >>> (i << 3)) & 0xFF); return bytes; |
Long | toBytes(int megabytes) to Bytes return megabytes * BYTES_IN_MB;
|
byte[] | toBytes(int n) Converter byte[] r = new byte[4]; r[0] = (byte) (n % 256); n /= 256; r[1] = (byte) (n % 256); n /= 256; r[2] = (byte) (n % 256); r[3] = (byte) (n / 256); return r; ... |
byte[] | toBytes(int n) Returns a 4-byte array built from an int. byte[] buf = new byte[4]; for (int i = 3; i >= 0; i--) { buf[i] = (byte) (n & 0xFF); n >>>= 8; return buf; |
byte[] | toBytes(int val) Convert an int value to a byte array. byte[] b = new byte[4]; for (int i = 3; i > 0; i--) { b[i] = (byte) val; val >>>= 8; b[0] = (byte) val; return b; |
byte[] | toBytes(int value) Converts an int value to a byte array byte[] b = new byte[4]; for (int i = 3; i > 0; i--) { b[i] = (byte) (value); value >>>= 8; b[0] = (byte) (value); return b; |
byte[] | toBytes(int value) to Bytes byte[] result = new byte[4]; for (int idx = 0; idx < 4; idx++) { result[idx] = (byte) (value & 0xFF); value = value >> 8; return result; |
byte[] | toBytes(int value) to Bytes return new byte[] { (byte) (value >>> 24), (byte) (value >>> 16), (byte) (value >>> 8), (byte) value }; |