In this tutorial, we will see how to transfer the content of a long array into long buffer.
LongBufferAPI:
The java.nio.LongBuffer class extends java.nio.Buffer class. It provides the following methods:
| Return type | Method | Description |
| static LongBuffer | allocate(int capacity) | The allocate(..)method allocate a new long buffer. |
| LongBuffer | put(long[] array) | The put(..)method transfer the content of a long array into long buffer. |
import java.nio.*;
|
|
C:\>java ArrayInBuffer After putting array value into buffer. Value in buffer. 345553322 22332434 575876433 |
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.