MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

import java.nio.ByteBuffer;
import java.nio.IntBuffer;

public class MainClass {

    private static final int BSIZE = 1024;

    public static void main(String[] args) {
        ByteBuffer bb = ByteBuffer.allocate(BSIZE);
        IntBuffer ib = bb.asIntBuffer();

        ib.put(new int[] { 1, 2, 7, 9, 3, 8, 6 });

        System.out.println(ib.get(3));
        ib.put(3, 1811);
        ib.rewind();
        while (ib.hasRemaining()) {
            int i = ib.get();
            if (i == 0)
                break; // Else we'll get the entire buffer
            System.out.println(i);
        }
    }
}
/*
*/