Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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();
    }
}