Mongo and GridFS Java Driver with MATLAB

조회 수: 15 (최근 30일)
Marc Youcef
Marc Youcef . 2019년 6월 6일
댓글: Marc Youcef . 2019년 6월 19일
I am trying to upload and download pictures from MATLAB to MongoDB using the Mongo Java Driver.
I am following below tutorial on GridFS java:
In MATLAB I did :
javaaddpath("C:\Users\****\Documents\jar_files\mongo-java-driver-3.11.0-beta3.jar")
import com.mongodb.Block;
import com.mongodb.client.MongoClients;
import com.mongodb.client.MongoClient;
import com.mongodb.client.MongoDatabase;
import com.mongodb.client.gridfs.*;
import com.mongodb.client.gridfs.model.*;
import org.bson.Document;
import org.bson.types.ObjectId;
import java.io.*;
import java.nio.file.Files;
import java.nio.charset.StandardCharsets;
import com.mongodb.client.model.Filters.eq;
mongoClient = MongoClients.create();
myDatabase = mongoClient.getDatabase("TestData");
gridFSFilesBucket = GridFSBuckets.create(myDatabase, "PicturesTest");
streamToUploadFrom = FileInputStream(File("C:\Users\****\Pictures\MyPicture.png"));
Until that point it works but then I can't do the following line:
fileId = gridFSBucket.uploadFromStream("mongodb-tutorial", streamToUploadFrom)
I get follwing error message ;
Undefined variable "gridFSBucket" or class "gridFSBucket.uploadFromStream".
I do not get why it is not able to find gridFSBucket function in the java driver.
I tried to play with the jar files it worked once but is not working anymore (do not know what I did exactly)...
Any help is much appreciated.
Thanks.

채택된 답변

Debasish Samal
Debasish Samal 2019년 6월 7일
The error occurs because there is no such object "gridFSBucket".
You need to create an object "gridFSBucket" of type GridFSBucket. Just add this line to your code:
gridFSBucket = GridFSBuckets.create(myDatabase);
Then add this:
fileId = gridFSBucket.uploadFromStream("mongodb-tutorial", streamToUploadFrom);
  댓글 수: 1
Marc Youcef
Marc Youcef 2019년 6월 7일
Perfect it solved the issue in fact I badly re coded the java code shown in the tutorial webpage into MATLAB.
I am gonna add the reste of the script for people interested on having the full upload/download code to MongoDB. Thanks again for the help.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Marc Youcef
Marc Youcef 2019년 6월 7일
편집: Marc Youcef 님. 2019년 6월 7일
Please find below an example of how to upload/download a picture from MATLAB to MongoDB:
javaaddpath("C:\Users\***\Documents\jar_files\mongo-java-driver-3.11.0-beta3.jar")
import com.mongodb.Block;
import com.mongodb.client.MongoClients;
import com.mongodb.client.MongoClient;
import com.mongodb.client.MongoDatabase;
import com.mongodb.client.gridfs.*;
import com.mongodb.client.gridfs.model.*;
import org.bson.Document;
import org.bson.types.ObjectId;
import java.io.*;
import java.nio.file.Files;
import java.nio.charset.StandardCharsets;
import com.mongodb.client.model.Filters.eq;
%connection
mongoClient = MongoClients.create();
myDatabase = mongoClient.getDatabase("TestDb");
%Upload Picture
gridFSFilesBucket = GridFSBuckets.create(myDatabase, "PicturesTest");
streamToUploadFrom = FileInputStream(File("C:\Users\***\Pictures\Mypicture.png"));
fileId = gridFSFilesBucket.uploadFromStream("mongodb-tutorial", streamToUploadFrom)
%Download Picture
streamToDownloadTo = FileOutputStream("C:\Users\***\Pictures\Mypicture.png");
gridFSFilesBucket.downloadToStream(fileId, streamToDownloadTo);
streamToDownloadTo.close();
downloadStream = gridFSFilesBucket.openDownloadStream(fileId);
% Create the copier class
isc = com.mathworks.mlwidgets.io.InterruptibleStreamCopier.getInterruptibleStreamCopier;
% Create a buffer to copy into
outputStream = java.io.ByteArrayOutputStream;
% Copy from your download stream to this buffer
isc.copyStream(downloadStream,outputStream);
% Close the buffer
outputStream.close
% Get the data from the buffer as array of int8 in MATLAB
binaryData = outputStream.toByteArray;
import java.io.ByteArrayInputStream;
import javax.imageio.ImageIO;
bais = ByteArrayInputStream(outputStream.toByteArray());
jbi = ImageIO.read(bais);
nrows = jbi.getHeight; ncols = jbi.getWidth;
data = reshape(typecast(jbi.getData.getDataStorage, 'uint8'), [], ncols, nrows);
matImg = permute(data,[3 2 1]);
% Re order RGB
matImg2=matImg(:,:,3);
matImg2(:,:,2)=matImg(:,:,2);
matImg2(:,:,3)=matImg(:,:,1);
% Display Image
imagesc(matImg2);
  댓글 수: 2
Marc Youcef
Marc Youcef 2019년 6월 19일
Many thanks Martijn, this got the work done faster !

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by