How to get the binary stream out from CoyoteOutputStream?
OutputStream out = getOutputStream(); // returns a CoyoteOutputStream object
out.write(binary);
out.flush();
Is there way to get the byte array back like in ByteArrayOutputStream toByteArray() ?
Thank You.