Home Tutorial Java Corejava Nio Transfer the content of a int array into int buffer.

 
 

Transfer the content of a int array into int buffer.
Posted on: August 4, 2010 at 12:00 AM
In this tutorial you will see how to transfer the content of a int array into int buffer.

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.

Code

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

public class ArrayToBuffer {
  public static void main(String[] arg){
ByteBuffer bBuffer = ByteBuffer.allocateDirect(512);
    IntBuffer iBuffer = b.asIntBuffer();
    int[] array = new int[] { 234};
    for (int s = 0; s < array.length; s++) {
      iBuffer.put(array[s]);
    }
    iBuffer.flip();
    System.out.println("Content of buffer.");
    while (iBuffer.hasRemaining()) {
      System.out.println(iBuffer.get());
    }
  }
}

Output

C:\>java ArrayToBuffer
Content of int buffer.
2
3
4
5

Download this code

Related Tags for Transfer the content of a int array into int buffer.:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.