Java Byte Array to Int byteToInt(final byte[] b)

Here you can find the source of byteToInt(final byte[] b)

Description

Converts a given byte array to an integer value

License

Open Source License

Parameter

Parameter Description
b Byte array to convert

Return

Integer value

Declaration

public static int byteToInt(final byte[] b) 

Method Source Code

//package com.java2s;

public class Main {
    /**/*  w ww .j a  v  a2s .com*/
     * Converts a given byte array to an integer value
     *
     * @param b
     *            Byte array to convert
     * @return Integer value
     */
    public static int byteToInt(final byte[] b) {
        int result = 0;
        for (int j = 0; j < 4; j++) {
            result <<= 8;
            result |= (b[j] & 0xFF);
        }

        return result;
    }
}

Related

  1. byteToInt(byte[] bytes)
  2. byteToInt(byte[] i_Value)
  3. byteToInt(byte[] num)
  4. byteToInt(byte[] source, int sourceOffset)
  5. byteToInt(byte[] values)
  6. byteToInt2(byte[] b)
  7. byteToInteger(byte[] b)