MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Konvertieren der JSON-Struktur in BasicDBObject

com.mongodb.util.JSON hat eine Analysemethode.

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