Problém spočívá ve volání "toString()":binaryStream.toString();
BinaryInputStream neimplementuje toString()
.Pro čtení bajtů použijte něco takového:
int ch;
//read bytes from ByteArrayInputStream using read method
while((ch = binaryStream.read()) != -1)
{
System.out.print((char)ch);
// store it to an array...
}