Java Integer Create toInt(byte[] bytes)

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

Description

convert int from byte array

License

Open Source License

Parameter

Parameter Description
bytes a parameter

Declaration

public static int toInt(byte[] bytes) 

Method Source Code

//package com.java2s;

public class Main {
    /**//from   www . j a  v  a2s.  c  o m
     * <p>convert int from byte array</p>
     * 
     * @param bytes
     * @return
     */
    public static int toInt(byte[] bytes) {
        int result = 0;
        for (int i = 0; i < 4; i++) {
            result = (result << 8) - Byte.MIN_VALUE + (int) bytes[i];
        }
        return result;
    }
}

Related

  1. toInt(byte[] bytes)
  2. toInt(byte[] bytes)
  3. toInt(byte[] bytes)
  4. toInt(byte[] bytes)
  5. toInt(byte[] bytes)
  6. toInt(byte[] bytes)
  7. toInt(byte[] bytes)
  8. toInt(byte[] bytes, boolean isBigEndian)
  9. toInt(byte[] bytes, int index)