I want to convert the following json structure to BasicDBOject in java and insert into mongo db.
json
BasicDBOject
My JSON structure is
{ \"
com.mongodb.util.JSON has a parse method.
BasicDBObject implements DBObject
Object o = com.mongodb.util.JSON.parse("Your JSON structure or JSONObj.toString()"); DBObject dbObj = (DBObject) o;