In this tutorial you will see how to creates a view of byte buffer as a int buffer.
In this tutorial you will see how to creates a view of byte buffer as a int buffer.In this tutorial, we will see how to creates a view of byte buffer as a int buffer.
ByteBuffer API:
The java.nio.ByteBuffer class extends java.nio.Buffer class. It provides the following methods:
| Return type | Method | Description |
| static ByteBuffer | allocate(int capacity) | The allocate(..)method allocate a new byte buffer. |
| abstract IntBuffer | asIntBuffer() | The asIntBuffer() method creates a view of byte buffer as a int buffer. |
| int | limit() | The limit() method returns the limit of associated buffer. |
| int | position() | The position() method returns the position of associated buffer. |
| final int | capacity() | The capacity() method returns the capacity of associated buffer. |
import java.nio.*;
|
| C:\>java AsInt Information related to byte buffer : ByteBuffer Limit = 1024 ByteBuffer position = 0 ByteBuffer capacity = 1024 Information related to Int buffer : IntBuffer Limit = 256 IntBuffer position = 0 IntBuffer capacity = 256 |