Android Byte Array to Int Convert byte2Integer(byte[] bin)

Here you can find the source of byte2Integer(byte[] bin)

Description

byte Integer

Declaration

public static Integer byte2Integer(byte[] bin) 

Method Source Code

//package com.java2s;

public class Main {
    public static Integer byte2Integer(byte bin) {
        return (Integer) (bin & 0xFF);

    }/* ww w.  j a  v a 2 s  .  co  m*/

    public static Integer byte2Integer(byte[] bin) {
        int mask = 0xff;
        int temp = 0;
        int n = 0;
        int size = bin.length;
        if (size <= 0) {
            return 0;
        }
        if (size < 2 && size > 0) {
            return byte2Integer(bin[0]);
        }

        for (int i = 0; i < bin.length; i++) {
            n <<= 8;
            temp = bin[i] & mask;
            n |= temp;
        }
        return n;
    }
}

Related

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