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

Conversione della struttura JSON in BasicDBObject

com.mongodb.util.JSON ha un metodo di analisi.

Object o = com.mongodb.util.JSON.parse("Your JSON structure or JSONObj.toString()");
DBObject dbObj = (DBObject) o;