Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
share|improve this question

4 Answers

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:

ByteBuffer bb =..

byte[] b = new byte[bb.remaining()]
bb.get(b);

which is equivalent as per the ByteBuffer javadocs.

share|improve this answer
1  
Correct. And note that bb.capacity() might equal bb.remaining() even when the backing array is longer, so you must not use their equality as a test of when bb.array() is correct. See ByteBuffer.slice(). – cdunn2001 Sep 26 '12 at 0:01

bb.array() will return the byte array that backs the buffer.

share|improve this answer
4  
...if there is one. "Invoke the hasArray method before invoking this method in order to ensure that this buffer has an accessible backing array." – Michael Myers Mar 24 '09 at 21:25
1  
Also it won't work if the byte array is read only, as that would bypass the read-only property & violate the ByteBuffer's contract. – Jason S Mar 24 '09 at 21:30

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.

share|improve this answer
But often you'll need to call something (not in your own code) that takes a byte[], so converting isn't optional. – James Moore Mar 16 '11 at 14:55

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.

byte[] test = "Hello World".getBytes("Latin1");
ByteBuffer b1 = ByteBuffer.wrap(test);
byte[] hello = new byte[6];
b1.get(hello);
ByteBuffer b2 = b1.slice(); // position = 0, string = "World"
byte[] tooLong = b2.array(); // Will NOT be "World", but will be "Hello World".
byte[] world = new byte[5];
b2.get(world); // world = "World"

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.