Android Byte Array to Int Convert byteArrayToInt(byte[] bytes)

Here you can find the source of byteArrayToInt(byte[] bytes)

Description

byte Array To Int

Declaration

public static int byteArrayToInt(byte[] bytes) 

Method Source Code

//package com.java2s;

public class Main {
    public static int byteArrayToInt(byte[] bytes) {
        int value = 0;
        for (int i = 0; i < 4; i++) {
            int shift = (4 - 1 - i) * 8;
            value += (bytes[i] & 0x000000FF) << shift;
        }//  w w w.j a v a 2s .com
        return value;
    }
}

Related

  1. byte2Int(byte b)
  2. byte2Integer(byte bin)
  3. byte2Integer(byte[] bin)
  4. byteArrayToInt(byte[] b)
  5. byteArrayToInt(byte[] b)
  6. bytes2Int(byte[] data)
  7. bytesToInt(byte[] b)
  8. bytesToInt(byte[] bytes)
  9. bytesToInt(byte[] bytes)