我使用的是Java3.2和MongoDB 1.8版本以及mongo-java驱动程序。我已经在数据库中保存了图像。我能够保存图像,读取图像和读取所有图像。现在我想在GridFS中更新图像。如果镜像名称相同,我想覆盖镜像。当我尝试以相同的名称保存图像时,我得到了两个图像。我使用下面的代码来保存图像。
GridFSBucket gridFSBucket = GridFSBuckets.create(database, imageCollection);
InputStream streamToUploadFrom = new FileInputStream(new File(imageFileName));
GridFSUploadOptions options = new GridFSUploadOptions()
.metadata(new Document("type", "brand").append("name", name).append("uuid", UUID.randomUUID().toString()));
ObjectId fileId = gridFSBucket.uploadFromStream(name, streamToUploadFrom, options)任何人可以引导我到任何特定的文档链接/解决办法,以便我可以覆盖/更新图像。
发布于 2016-12-20 17:53:25
无法在GridFS中更新文件。每个文档实际上被分成块,并且更新文件是不可能的。因此,我建议先删除要更新的文件,然后再导入新文件。
GridFSBucket gridFSBucket = GridFSBuckets.create(database, imageCollection);
GridFSBucket gridFSBucket = GridFSBuckets.create(database, imageCollection);
InputStream streamToUploadFrom = new FileInputStream(new File(new_image_file));
Document query = new Document("metadata.name", "image1");
MongoCursor<Document> cursor = database.getCollection(imagecollection+".files").find(query).iterator();
while (cursor.hasNext()) {
Document document = cursor.next();
Document metadata = document.get("metadata", Document.class);
ObjectId _id = document.getObjectId("_id");
gridFSBucket.delete(_id);
GridFSUploadOptions options = new GridFSUploadOptions().metadata(metadata);
ObjectId fileId = gridFSBucket.uploadFromStream("image1", streamToUploadFrom, options);
}https://stackoverflow.com/questions/41223691
复制相似问题