Java Byte Array to Long bytes2long(byte[] bytes)

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

Description

byteslong

License

Apache License

Declaration

public static long bytes2long(byte[] bytes) 

Method Source Code

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

public class Main {
    public static long bytes2long(byte[] bytes) {
        long num = 0;
        for (int i = 0; i < 8; i++) {
            num <<= 8;/* w  w w  .  j av  a  2  s  .c om*/
            num |= (bytes[i] & 0xff);
        }
        return num;
    }
}

Related

  1. bytes2long(byte[] byteArray, int offset)
  2. bytes2Long(byte[] bytes)
  3. bytes2long(byte[] bytes)
  4. bytes2Long(byte[] bytes)
  5. bytes2Long(byte[] bytes)
  6. bytes2long(byte[] bytes)
  7. bytes2long(byte[] bytes, boolean bigEndian)
  8. bytes2Long(byte[] bytes, int offset)
  9. bytes2Long(final byte[] b)