4 byte to int java code example Example: convert two bytes to int java int val = ((bytes[2] & 0xff) << 8) | (bytes[3] & 0xff);