Android Byte Array to Unicode Convert byteArrayBigEndian2Int(byte[] bs)

Here you can find the source of byteArrayBigEndian2Int(byte[] bs)

Description

byte Array Big Endian Int

License

Open Source License

Declaration

public static int byteArrayBigEndian2Int(byte[] bs) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

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

    public static int byteArrayBigEndian2Int(byte[] bs) {
        return byteArray2Int(bs);
    }//from w  w  w.j a v a 2 s .  c om

    public static int byteArray2Int(byte[] bs) {
        if (bs.length != 4)
            throw new IllegalArgumentException();
        int res = 0;
        res |= (bs[0] & BYTE_MASK) << 24;
        res |= (bs[1] & BYTE_MASK) << 16;
        res |= (bs[2] & BYTE_MASK) << 8;
        res |= (bs[3] & BYTE_MASK);
        return res;
    }
}

Related

  1. byteArrayLittleEndian2Int(byte[] bs)
  2. bytesToAsciiMaybe(byte[] data)
  3. bytesToAsciiMaybe(byte[] data, int offset, int length)
  4. lowerToUpper(byte[] b)