mongoDB批量插入文档时,运行下面代码,用MongoVUE查看数据库,mongo库中只存在一个文档?不应该是20个吗?
世界只因有你
世界只因有你 2017-04-24 15:59:34
0
2
702
import java.net.UnknownHostException;
import com.mongodb.BasicDBObject;
import com.mongodb.DB;
import com.mongodb.DBCollection;
import com.mongodb.DBCursor;
import com.mongodb.DBObject;
import com.mongodb.Mongo;

public class HelloMongoDB {

    private static Mongo mg;
    private static DB db;
    private static DBCollection col;

    public static void main(String[] args) throws UnknownHostException {

        HelloMongoDB hello = new HelloMongoDB();

        if (mg == null) {
            mg = new Mongo("127.0.0.1", 27017);
        }

        if (db == null) {
            db = mg.getDB("Studing");
        }

        if (col == null) {
            col = db.getCollection("test");
        }

        hello.InsertDocument(col);

    }

    public void InsertDocument(DBCollection col) {

        for (int i = 0; i < 10; i++) {
            BasicDBObject docu = new BasicDBObject();
            docu.put("type", "super");
            docu.put("price", i + 10);
            col.insert(docu);
        }

        for (int i = 0; i < 10; i++) {
            BasicDBObject docu = new BasicDBObject();
            docu.put("type", "tang");
            docu.put("price", i + 10);
            col.insert(docu);

        }

    }

}
世界只因有你
世界只因有你

répondre à tous(2)
PHPzhong

Désolé. . En fait, je l'ai testé. . Il ne semble y avoir aucun problème. .

洪涛

Il semble qu'il n'y ait pas de problème, appelez getLastError pour voir s'il y a du contenu

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal