In this tutorial, we will discuss how to get specific index value from 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 short buffer of given capacity. |
| abstract short | get( int index) | The get() method reads is short value at given index from short buffer. |
import java.nio.*;
|
| C:\>java GetIndexValue Value at index 2 in short buffer : 2775 |