Op uw ResultSet
bel:
Blob imageBlob = resultSet.getBlob(yourBlobColumnIndex);
InputStream binaryStream = imageBlob.getBinaryStream(0, imageBlob.length());
U kunt ook bellen:
byte[] imageBytes = imageBlob.getBytes(1, (int) imageBlob.length());
Zoals BalusC opmerkte in zijn opmerking, kun je beter het volgende gebruiken:
InputStream binaryStream = resultSet.getBinaryStream(yourBlobColumnIndex);
En dan hangt de code af van hoe je de afbeelding gaat lezen en insluiten.