Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

import java.nio.ByteBuffer;
import java.nio.ByteOrder;

public class Main {
    public static byte[] shortToByteArray(short value) {
        ByteBuffer buffer = ByteBuffer.allocate(Short.SIZE / Byte.SIZE);
        buffer.order(ByteOrder.BIG_ENDIAN);
        buffer.putShort(value);
        return buffer.array();
    }
}