アプリケーションで MongoDB を使用しており、MongoDB コレクション内に複数のドキュメントを挿入する必要がありました。私が使用しているバージョンは1.6です
ここで例を見ました
http://docs.mongodb.org/manual/core/create/
の中に
複数ドキュメントの一括挿入 セクション
これを行うために作成者が配列を渡していた場所。
同じことを試してみたのですが、なぜ許可されないのですか?一度に複数のドキュメントを挿入する方法を教えてください??
package com;
import java.util.Date;
import com.mongodb.BasicDBObject;
import com.mongodb.DB;
import com.mongodb.DBCollection;
import com.mongodb.MongoClient;
public class App {
public static void main(String[] args) {
try {
MongoClient mongo = new MongoClient("localhost", 27017);
DB db = mongo.getDB("at");
DBCollection collection = db.getCollection("people");
/*
* BasicDBObject document = new BasicDBObject();
* document.put("name", "mkyong"); document.put("age", 30);
* document.put("createdDate", new Date()); table.insert(document);
*/
String[] myStringArray = new String[] { "a", "b", "c" };
collection.insert(myStringArray); // Compilation error at this line saying that "The method insert(DBObject...) in the type DBCollection is not applicable for the arguments (String[])"
} catch (Exception e) {
e.printStackTrace();
}
}
}
java を介して一度に複数のドキュメントを挿入できるようにする方法を教えてください。