Java – How to Convert Byte Array to ByteArrayOutputStream

bytebytearrayoutputstreamjava

I need to convert a byte array to ByteArrayOutputStream so that I can display it on screen.

Best Answer

byte[] bytes = ....;
ByteArrayOutputStream baos = new ByteArrayOutputStream(bytes.length);
baos.write(bytes, 0, bytes.length);

Method description:

Writes len bytes from the specified byte array starting at offset off to this byte array output stream.

Related Question