In this tutorial, we will see how to transfer the content of a float array into float buffer.
FloatBufferAPI:
The java.nio.FloatBuffer class extends java.nio.Buffer class. It provides the following methods:
| Return type | Method | Description |
| static FloatBuffer | allocate(int capacity) | The allocate(..)method allocate a new float buffer. |
| FloatBuffer | put(float[] array) | The put(..)method transfer the content of a float array into float buffer. |
import java.nio.*;
|
|
C:\>java FloatArrayTransfer Content of a float buffer. 1.09 4.5 2.9 6.8 |
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.