Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.nio.DoubleBuffer;
import java.util.Arrays;

public class Main {
    private static final int BSIZE = 1024;

    public static void main(String[] args) {
        DoubleBuffer bb = DoubleBuffer.allocate(BSIZE);

        bb.put(98765);

        DoubleBuffer bb1 = DoubleBuffer.allocate(BSIZE);

        double[] doubleArray = new double[BSIZE];

        bb1.get(doubleArray);

        System.out.println(Arrays.toString(doubleArray));

    }
}