javabytebytearrayoutputstream

How to convert Byte array to ByteArrayOutputStream


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


Solution

  • 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.