16

I want to convert the following json structure to BasicDBOject in java and insert into mongo db.

My JSON structure is

{
    "it": {
        "batch": "2013",
        "students": [
            {
                "name": "joe"
            },
            {
                "name": "john"
            }
        ]
    }
}

2 Answers 2

32

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;
Sign up to request clarification or add additional context in comments.

Comments

6
com.mongodb.util.JSON.parse 

Is deprecated

After version 3.6.1 use:

String json = "{"name": "joe"}";
Object o = BasicDBObject.parse(json);

Follow here: deprecated-list

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.