0
如何將圖像保存在覈心java中的couchbase lite中? 當我們將圖像保存在couchase服務器中時,我們將圖像轉換爲字節並保存字節。 但它在couchbase lite中沒有那樣的。 請幫助我。將圖像保存在couchbase lite中java
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);
我將圖像轉換爲字節數組並將其保存到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 img_properties = new HashMap (); img_properties.put(「image」,bytes); img_doc.putProperties(img_properties); –