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.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. |
import java.nio.*;
|
C:\>java ArrayIntoBuffer Content in short array. 78 97 34 5 Content in short buffer. 78 97 34 5 |