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

I am constructing an array of bytes in java and I don't know how long the array will be.

I want some tool like Java's StringBuffer that you can just call .append(byte b) or .append(byte[] buf) and have it buffer all my bytes and return to me a byte array when I'm done. Is there a class that does for bytes what StringBuffer does for Strings? It does not look like the ByteBuffer class is what I'm looking for.

Anyone have a good solution?

share|improve this question

1 Answer

up vote 48 down vote accepted

ByteArrayOutputStream You have to use write( byte[], int, int ) but it will grow as needed.

share|improve this answer
yes, this looks like it will do the trick. Thanks! – jbu Mar 19 '09 at 23:08
4  
Have a couple of badges. +1 – Michael Myers May 18 '09 at 21:25
+1 Proved useful for receiving data via a Socket without messing around with an array. – James Poulson Jan 14 '11 at 6:26

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.