O problema está na chamada "toString()":
binaryStream.toString();
BinaryInputStream não implementa toString()
.Use algo assim para ler os bytes:int ch;
//read bytes from ByteArrayInputStream using read method
while((ch = binaryStream.read()) != -1)
{
System.out.print((char)ch);
// store it to an array...
}