我首先解析图像,并将其作为byte []在数据库中索引,这意味着byte []变量具有字节格式的图像
我打算在搜索列表中使用图像。
是否可以将byte []变量放在File()
中?
ImageIO.read(new File(byteImage+".png"));
答案 0 :(得分:1)
使用new FileOutputStream(fileVariable).write(bytes);
答案 1 :(得分:1)
您的图片是否存储为png?如果是这样,您可以直接从字节数组中使用:
来准备它BufferedImage img = ImageIO.read(new ByteArrayInputStream(imageBytes));