Java Byte Array to Int bytes2ToInt(byte[] inputValues)

Here you can find the source of bytes2ToInt(byte[] inputValues)

Description

bytes To Int

License

Apache License

Declaration

private static int bytes2ToInt(byte[] inputValues) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static final int BYTE_MASK = 0xff;

    private static int bytes2ToInt(byte[] inputValues) {
        return ((inputValues[0] & BYTE_MASK) << 8) | (inputValues[1] & BYTE_MASK);
    }// w w  w.  j a  va  2 s.  co  m
}

Related

  1. Bytes2Int32(byte[] sour, int offset)
  2. Bytes2Int64(byte[] sour, int offset)
  3. bytes2IntArray(byte[] bytes)
  4. bytes2Integer(byte[] byteVal)
  5. bytes2LengthToIntLowOrder(byte[] intBytes)
  6. Bytes2Uint32(byte[] sour, int offset)
  7. bytesToInt(byte a)
  8. bytesToInt(byte A, byte B, byte C, byte D)
  9. bytesToInt(byte abyte0[], int i, int j)