Het probleem ligt in de "toString()"-aanroep:binaryStream.toString();
BinaryInputStream implementeert toString()
niet .Gebruik zoiets als dit om de bytes te lezen:
int ch;
//read bytes from ByteArrayInputStream using read method
while((ch = binaryStream.read()) != -1)
{
System.out.print((char)ch);
// store it to an array...
}