将JSON数组插入mongodb

时间:2015-01-26 13:07:06

标签: java json mongodb

我试图将一个表示JSON数组的字符串插入mongodb集合中,

String str = "[{\"id\":1,\"data\":\"data1\"},{\"id\":2,\"data\":\"data2\"},{\"id\":3,\"data\":\"data3\"}]";
DBObject dbObject = (DBObject) JSON.parse(str);
collection.insert(dbObject);

但我得到例外,

Exception in thread "main" java.lang.IllegalArgumentException: BasicBSONList can only work with numeric keys, not: [_id]

有人能告诉我这样做的正确方法吗?

3 个答案:

答案 0 :(得分:2)

String json = "[{\"id\":1,\"data\":\"data1\"},{\"id\":2,\"data\":\"data2\"},{\"id\":3,\"data\":\"data3\"}]";
    MongoCredential credential = MongoCredential.createCredential("root", "sample", "root".toCharArray());
    MongoClient mongoClient = new MongoClient(new ServerAddress("localhost"), Arrays.asList(credential));
    MongoDatabase db = mongoClient.getDatabase("sample");
    MongoCollection<Document> collection = db.getCollection("loginTracking");
    List<Document> jsonList = new ArrayList<Document>();
    net.sf.json.JSONArray array = net.sf.json.JSONArray.fromObject(json);
    for (Object object : array) {
        net.sf.json.JSONObject jsonStr = (net.sf.json.JSONObject) JSONSerializer.toJSON(object);
        Document jsnObject = Document.parse(jsonStr.toString());
        jsonList.add(jsnObject);

    }
    collection.insertMany(jsonList);
    mongoClient.close();

答案 1 :(得分:1)

根据java docinsert()可以接受单个DBObject或数组或List

因此,为了保存,您需要将JSON数组转换为数组/ DBObject列表,或保存每个数组的项

答案 2 :(得分:0)

我找到了实现这一目标的好方法:

(ArrayList<Document>) JSON.parse("[String json array]");

我遇到了这个问题,因为我需要在这个文档中附加一个Json数组的属性:

Document objAddendumVersion = new Document();
objAddendumVersion.append("_id", new ObjectId());
objAddendumVersion.append("Array", My Array here!);

但问题是Document.parse()不能与Arrays一起使用,所以我可以使用上面的行来解决它。所以最终的代码是:

Document objAddendumVersion = new Document();
objAddendumVersion.append("_id", new ObjectId());
objAddendumVersion.append("Array", (ArrayList<Document>) JSON.parse("[String json array]"));

它完美无缺。是的,我知道存在更好的方法,但目前我正在使用它。

我等待那些遇到同样麻烦的人。