ShortBuffer in java, Transfer the array's elements into short buffer.


 

 ShortBuffer in java, Transfer the array's elements into short buffer.

In this tutorial, you will see how to transfer the array's elements into short buffer.

In this tutorial, you will see how to transfer the array's elements into short buffer.

 ShortBuffer in java, Transfer the array's elements into short buffer.

 In this tutorial, we will see how to transfer the content of short array into short buffer.

ShortBuffer API:

The java.nio.ShortBuffer class extends java.nio.Buffer class. It provides the following methods:

Return type Method Description
static ShortBuffer allocate(int capacity)  The allocate(..)method allocate a new short buffer.
 ShortBuffer put(short [] array) The put(..)method transfer the content of a short array into short buffer.

Code

import java.nio.*;
import java.nio.ShortBuffer;

public class ArrayIntoBuffer {
  public static final int capacity = 256;
  public static void main(String[] arg) {
ShortBuffer shortBuf=ShortBuffer.allocate(capacity);
    short[] array = new short[] { 789734};
    System.out.print("Content in short array.\n");
    for (int i = 0; i < array.length; i++) {
      System.out.print(array[i" ");
    }
    shortBuf.put(array);
    shortBuf.flip();
    System.out.println();
    System.out.println("Content in short buffer.");
    while (shortBuf.hasRemaining()) {
      System.out.print(shortBuf.get() " ");
    }
  }
}

Output

C:\>java ArrayIntoBuffer
Content in short array.
78 97 34 5
Content in short buffer.
78 97 34 5

Download this code

Ads