आपके ResultSet
. पर कॉल करें:
Blob imageBlob = resultSet.getBlob(yourBlobColumnIndex);
InputStream binaryStream = imageBlob.getBinaryStream(0, imageBlob.length());
वैकल्पिक रूप से, आप कॉल कर सकते हैं:
byte[] imageBytes = imageBlob.getBytes(1, (int) imageBlob.length());
जैसा कि बलुस ने अपनी टिप्पणी में उल्लेख किया है, आप बेहतर उपयोग करेंगे:
InputStream binaryStream = resultSet.getBinaryStream(yourBlobColumnIndex);
और फिर कोड इस बात पर निर्भर करता है कि आप छवि को कैसे पढ़ने और एम्बेड करने जा रहे हैं।