Java Byte Array to Int bytesToInt(byte[] bytes)

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

Description

bytes To Int

License

LGPL

Declaration

public static final int bytesToInt(byte[] bytes) 

Method Source Code

//package com.java2s;
/**//ww w  .jav  a2  s.c om
 * Licensed to LGPL v3.
 */

public class Main {
    public static final int bytesToInt(byte[] bytes) {
        int value = 0;
        for (int i = 0; i < 4; i++) {
            int shift = (4 - 1 - i) * 8;
            value += (bytes[i] & 0x000000FF) << shift;
        }
        return value;
    }
}

Related

  1. bytesToInt(byte[] b, int offset)
  2. bytesToInt(byte[] b, int offset)
  3. bytesToInt(byte[] buf, int offset)
  4. bytesToInt(byte[] buf, int startIdx)
  5. bytesToInt(byte[] buff, int off, int len)
  6. bytesToInt(byte[] bytes)
  7. bytesToInt(byte[] bytes)
  8. bytesToInt(byte[] bytes)
  9. bytesToInt(byte[] bytes)