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

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

Description

bytesint

License

Apache License

Declaration

public static int bytes2int(byte[] bytes) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static int bytes2int(byte[] bytes) {
        int num = 0;
        for (int i = 0; i < 4; i++) {
            num <<= 8;/*from   w  w  w.j av a2s. c  om*/
            num |= (bytes[i] & 0xff);
        }
        return num;
    }

    public static int bytes2int(byte[] bytes, int offset) {
        int num = 0;
        for (int i = offset; i < offset + 4; i++) {
            num <<= 8;
            num |= (bytes[i] & 0xff);
        }
        return num;
    }
}

Related

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