使用java操作MongoDB

來源:互聯網
上載者:User

標籤:mongodb      drive   下載   插入   com   collect   date   remove   

1.環境準備

下載mongoDB對Java支援的驅動包

驅動包:https://github.com/mongodb/mongo-java-driver/downloads

 

2.查詢集合中所有文檔

Mongo mongo = new Mongo("localhost",27017);DB db = mongo.getDB("test");DBCollection collection = db.getCollection("customer");DBCursor dbCursor = collection.find();System.out.println(collection.getCount());while(dbCursor.hasNext()){System.out.println(dbCursor.next());}mongo.close();

3.刪除集合中的文檔

Mongo mongo = new Mongo("localhost",27017);DB db = mongo.getDB("test");DBCollection collection = db.getCollection("customer");BasicDBObject o = new BasicDBObject("_id", new ObjectId("5199ee647d5fc789bc760c07"));collection.remove(o);mongo.close();

4.向集合中插入文檔

Mongo mongo = new Mongo("localhost",27017);DB db = mongo.getDB("test");DBCollection collection = db.getCollection("customer");DBObject c = new BasicDBObject();c.put("name", “jack");c.put("age", 24);collection.insert(c);mongo.close();

5.更新集合中的文檔

Mongo mongo = new Mongo("localhost",27017);DB db = mongo.getDB("test");DBCollection collection = db.getCollection("customer");BasicDBObject query = new BasicDBObject("_id",new ObjectId("519e2e393296cf3baccdb10c"));BasicDBObject object = (BasicDBObject) collection.findOne(query);object.put("name", “wangwu");int n = collection.update(query, object).getN();System.out.println(n);mongo.close();

  

  

 

 

使用java操作MongoDB

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.