vote up 3 vote down star

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?

flag

22% accept rate

1 Answer

vote up 13 vote down check

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

link|flag
yes, this looks like it will do the trick. Thanks! – jbu Mar 19 at 23:08
Have a couple of badges. +1 – mmyers May 18 at 21:25

Your Answer

Get an OpenID
or

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