将 JSON 结构转换为基本 DBObject

2022-09-03 09:31:17

我想将以下结构转换为java并插入mongo db。jsonBasicDBOject

我的 JSON 结构是

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

答案 1

com.mongodb.util.JSON 有一个解析方法。

BasicDBObject 实现 DBObject

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

答案 2
com.mongodb.util.JSON.parse 

已弃用

在版本 3.6.1 之后使用:

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

关注此处:已弃用列表