Converting JSON Structure to BasicDBObject

后端 未结 2 1659
说谎
说谎 2021-02-07 10:18

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

My JSON structure is

{
    \"         


        
相关标签:
2条回答
  • 2021-02-07 11:08
    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

    0 讨论(0)
  • 2021-02-07 11:14

    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;
    
    0 讨论(0)
提交回复
热议问题