sql >> Base de Datos >  >> RDS >> Mysql

Leyendo un blob de MySQL con Java

El problema radica en la llamada "toString()":binaryStream.toString(); BinaryInputStream no implementa toString() .Utilice algo como esto para leer los 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...
}