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

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

Description

byteslong

License

Open Source License

Declaration

public static long bytes2long(byte[] bytes) 

Method Source Code

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

public class Main {
    public static long bytes2long(byte[] bytes) {
        return bytes2long(bytes, 0);
    }//from   ww  w .j ava2 s.c  o m

    public static long bytes2long(byte[] bytes, int offset) {
        long result = bytes[offset + 7] & 0xFFl;
        result = result ^ ((bytes[offset + 6] & 0xffl) << 8);
        result = result ^ ((bytes[offset + 5] & 0xffl) << 16);
        result = result ^ ((bytes[offset + 4] & 0xffl) << 24);
        result = result ^ ((bytes[offset + 3] & 0xffl) << 32);
        result = result ^ ((bytes[offset + 2] & 0xffl) << 40);
        result = result ^ ((bytes[offset + 1] & 0xffl) << 48);
        result = result ^ ((bytes[offset + 0] & 0xffl) << 56);
        return result;
    }
}

Related

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