Java tutorial
//package com.java2s; import java.nio.ByteBuffer; public class Main { public static byte[] longToBytes(long x) { ByteBuffer buffer = ByteBuffer.allocate(Long.SIZE / 8); buffer.putLong(0, x); return buffer.array(); } }