com.mongodb.util.JSON har en metod för att analysera en JSON-sträng till DBObject. Standard JSONCallback returnerar ett BasicDBObject eller BasicDBList enligt indatasträngen.
Object jsonObj = ...; //any of your org.json objects
Object o = com.mongodb.util.JSON.parse(jsonObj.toString());
DBObject dbObj = (DBObject) o;