Clear Filters
Clear Filters

How to convert a BasicDBList or BasicDBOject

3 views (last 30 days)
KNC
KNC on 1 Apr 2017
Answered: Jayaram Theegala on 5 Apr 2017
Hi,
i have a cell array from a MongoDB Json that I would like to convert to a matrix or vektor. The problem is that some of those cells are a "BasicDBList" or "BasicDBObject" containing multiple cells from the original Json. Is there a possibility to convert "BasicDBList"/"BasicDBObject" to double or a string array?
Thanks in advance

Answers (1)

Jayaram Theegala
Jayaram Theegala on 5 Apr 2017
You can import the necessary MongoDB jars to MATLAB and then call the "toString" method of "BasicDBObject"/"BasicDBList", by doing this you can get the result in Java String type. Then you can convert the Java String to MATLAB char array as shown below:
str = java.lang.String('hello');
res = str.toCharArray'
If you want to convert the Java String to MATLAB string type, you can do it as shown below:
str = java.lang.String('hello');
res = string(str);
Please note that above shown conversion does not work on MATLAB R2016b and earlier versions. I hope this helps!

Community Treasure Hunt

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

Start Hunting!