我可以将图像存储在数据类型为 blob 的 mySql 数据库中。我以二进制图像格式存储了图像。我已经在这段代码的帮助下将图像存储在 MYSQL 中
File file = new File("G:/photos/New Folder (2)/bhavana_gallery_10.jpg");
byte[] bFile = new byte[(int) file.length()];
try {
FileInputStream fileInputStream = new FileInputStream(file);
fileInputStream.read(bFile);
fileInputStream.close();
} catch (Exception e) {
e.printStackTrace();
}
inpatient.setImagefile(bFile);
但是我可以在网络应用程序中打开图像,我可以进行任何转换吗,请告诉我什么类型的转换............