MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Utilizzi JSON con MongoDB?

com.mongodb.util.JSON ha un metodo per analizzare una stringa JSON in DBObject. Il JSONCallback predefinito restituirà un BasicDBObject o BasicDBList in base alla stringa di input.

Object jsonObj = ...; //any of your org.json objects
Object o = com.mongodb.util.JSON.parse(jsonObj.toString());
DBObject dbObj = (DBObject) o;