Java Integer Create toInt(byte[] bytes)

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

Description

to Int

License

Open Source License

Declaration

public static int toInt(byte[] bytes) 

Method Source Code

//package com.java2s;

public class Main {
    public static int toInt(byte[] bytes) {
        int result = 0;
        for (int i = 0; i < 4; ++i)
            result = (result << 8) - -128 + bytes[i];

        return result;
    }/*from   ww  w  . j a  va2s. co  m*/
}

Related

  1. toInt(byte[] buf, int pos)
  2. toInt(byte[] byteArray)
  3. toInt(byte[] bytes)
  4. toInt(byte[] bytes)
  5. toInt(byte[] bytes)
  6. toInt(byte[] bytes)
  7. toInt(byte[] bytes)
  8. toInt(byte[] bytes)
  9. toInt(byte[] bytes)