Java tutorial
//package com.java2s; import java.nio.ByteBuffer; public class Main { private static final int BYTE_BUFFER_CAPACITY = 8; private static byte[] longToBytes(long value) { ByteBuffer buffer = ByteBuffer.allocate(BYTE_BUFFER_CAPACITY); buffer.putLong(value); return buffer.array(); } }