Android Byte Array to Int Convert bytes2Int(byte[] data)

Here you can find the source of bytes2Int(byte[] data)

Description

bytes Int

Declaration

public static int bytes2Int(byte[] data) 

Method Source Code

//package com.java2s;

public class Main {
    public static int bytes2Int(byte[] data) {

        if (data.length == 1) {
            return (int) data[0];
        } else {// w  w w . java2s.c  o m
            int mask = 0xff;
            int temp = 0;
            int n = 0;
            for (int i = 0; i < 4; i++) {
                n <<= 8;
                temp = data[i] & mask;
                n |= temp;
            }
            return n;
        }
    }
}

Related

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