如何在核心 java 的 couchbase lite 中保存图像?当我们在 couchase 服务器中保存图像时,我们将图像转换为字节而不是保存字节。但它在couchbase lite中没有这样的。请帮助我。
final BufferedImage image = ImageIO.read(new File(file.getPath()));
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write(image, "png", baos);
Document img_doc = db.getDocument("image");
Map<String, Object> img_properties = new HashMap<String, Object>();
img_properties.put("image", bytes);
img_doc.putProperties(img_properties);