In this tutorial you will see how to transfer the content of a float buffer into float array.
In this tutorial you will see how to transfer the content of a float buffer into float array.In this tutorial, we will see how to transfer the content of a float buffer into float array.
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 | get(float array) | The get(..)method transfer the content of a float buffer into float array. |
import java.nio.*;
|
C:\>java BufferToArray Content of a float array. 12.98 54.4 78.94 87.56 |