In this tutorial you will see how to transfer the content of a int array into int buffer.
In this tutorial you will see how to transfer the content of a int array into int buffer.In this tutorial, we will see how to transfer the content of a int array into int buffer.
IntBufferAPI:
The java.nio.IntBuffer class extends java.nio.Buffer class. It provides the following methods:
Return type | Method | Description |
static IntBuffer | allocate(int capacity) | The allocate(..)method allocate a new int buffer. |
IntBuffer | put(int[] array) | The put(..)method transfer the content of a int array into int buffer. |
import java.nio.*;
|
C:\>java ArrayToBuffer Content of int buffer. 2 3 4 5 |