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

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

Description

bytes Int

License

Open Source License

Declaration

public static int bytes2Int(byte[] bytes) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static int bytes2Int(byte[] bytes) {
        int result = 0;
        for (int i = 0; i < 4; i++)
            //result += (bytes[i] & 0xffff) << 8*i ;
            result += bytes[i] << 8 * (4 - i - 1);
        return result;
    }//from  w w w  . j av  a  2s  . c  o m
}

Related

  1. bytes2Int(byte[] b, int start, int len)
  2. bytes2int(byte[] buf)
  3. bytes2int(byte[] bytes)
  4. bytes2int(byte[] bytes)
  5. bytes2int(byte[] bytes)
  6. bytes2int(byte[] bytes)
  7. bytes2int(byte[] bytes, int begin)
  8. bytes2Int(byte[] bytes, int defaultValue)
  9. bytes2Int(byte[] bytes, int offset)