public static long getUnsignedIntLE(byte[ ] b) { ...
# chicago
b
public static long getUnsignedIntLE(byte[] b) { return (((b[3] & 0xff) << 24) | ((b[2] & 0xff) << 16) | ((b[1] & 0xff) << 8) | (b[0] & 0xff)); }