Is this the recommended way to get the bytes from the ByteBuffer
ByteBuffer bb =..
byte[] b = new byte[bb.remaining()]
bb.get(b, 0, b.length);
|
Is this the recommended way to get the bytes from the ByteBuffer
|
||||
|
|
|
Depends what you want to do. If what you want is to retrieve the bytes that are remaining (between position and limit), then what you have will work. You could also just do:
which is equivalent as per the ByteBuffer javadocs. |
|||||
|
|
bb.array() will return the byte array that backs the buffer. |
|||||||||
|
|
This is a simple way to get a byte[], but part of the point of using a ByteBuffer is avoiding having to create a byte[]. Perhaps you can get whatever you wanted to get from the byte[] directly from the ByteBuffer. |
|||
|
|
Note that the bb.array() doesn't honor the byte-buffers position, and might be even worse if the bytebuffer you are working on is a slice of some other buffer. I.e.
Which might not be what you intend to do. If you really do not want to copy the byte-array, a work-around could be to use the byte-buffer's arrayOffset() + remaining(), but this only works if the application supports index+length of the byte-buffers it needs. |
|||
|
|