如何覆盖mongoDB gridfs中的图像?

时间:2016-12-19 13:28:48

标签: java mongodb gridfs

我正在使用MongoDB 3.2和Java 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)

任何人都可以指导我查看任何特定的文档链接/解决方法,以便我可以覆盖/更新图像。

1 个答案:

答案 0 :(得分:1)

无法在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);
}