In this tutorial, we will see how to read integer value from byte buffer by using getInt() method of ByteBuffer class.
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 ByteBuffer | putInt(int index, byte b) | The putInt(..) method write four byte containing the given int value into associated buffer. |
| abstract byte | getInt() | The getInt() method read 4 byte from current position and increment position. |
import java.nio.*;
|
| C:\>java GetIntBuffer Integer data into byte buffer : 221255 |
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.