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

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

Description

Convert byte array to original long value.

License

Apache License

Parameter

Parameter Description
bytes the byte array

Return

the original long value

Declaration

public static long bytesToLong(byte[] bytes) 

Method Source Code

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

public class Main {
    /**//from  www .  j a  v a2 s  .c  om
     * Convert byte array to original long value.
     *
     * @param bytes the byte array
     * @return the original long value
     */
    public static long bytesToLong(byte[] bytes) {
        long l = 0;
        for (int i = 0; i < 0 + 8; i++) {
            l <<= 8;
            l ^= bytes[i] & 0xFF;
        }
        return l;
    }
}

Related

  1. bytesToLong(byte[] b)
  2. bytesToLong(byte[] b)
  3. bytesToLong(byte[] b)
  4. bytesToLong(byte[] bs)
  5. bytesToLong(byte[] buf, int offset, int length, boolean asc)
  6. bytesToLong(byte[] bytes)
  7. bytesToLong(byte[] bytes)
  8. bytesToLong(byte[] bytes)
  9. bytesToLong(byte[] bytes)