Here you can find the source of getLongFromByteArray(final byte[] bytes)
Parameter | Description |
---|---|
bytes | the bytes |
public static long getLongFromByteArray(final byte[] bytes)
//package com.java2s; import java.nio.ByteBuffer; public class Main { /**/* w w w . ja v a 2 s. c o m*/ * Converts a byte array to a long. * * @param bytes the bytes * @return the long from byte array */ public static long getLongFromByteArray(final byte[] bytes) { return ByteBuffer.wrap(bytes).getLong(); } }