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

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

Description

bytes To Int

Declaration

public static int bytesToInt(byte[] bytes) 

Method Source Code

//package com.java2s;

public class Main {

    public static int bytesToInt(byte[] bytes) {
        return bytes[3] & 0xFF | (bytes[2] & 0xFF) << 8
                | (bytes[1] & 0xFF) << 16 | (bytes[0] & 0xFF) << 24;
    }//w w w.j a va 2  s.c  o  m
}

Related

  1. byteArrayToInt(byte[] b)
  2. byteArrayToInt(byte[] b)
  3. byteArrayToInt(byte[] bytes)
  4. bytes2Int(byte[] data)
  5. bytesToInt(byte[] b)
  6. bytesToInt(byte[] bytes)
  7. bytesToInt(byte[] in)
  8. bytesLE2int(byte[] b, int off)
  9. bytesLE2ints(byte[] b)