本文的目的是让你对如何使用Mongodb的java-driver驱动有一个简单的了解,当你阅读完本文你就可以参考其他文章以了解更多信息。
你可以在这里下载需要的驱动。
MongoClient mongoClient = new MongoClient( "localhost" , 5000 ); // 5000 为实例端口号,默认启动端口号为27017
DB db = mongoClient.getDB("mydb"); // 必须要先创建数据库
System.out.println(coll.getCount());
MongoDB--Getting Started with Java Driver,布布扣,bubuko.com
MongoDB--Getting Started with Java Driver
原文地址:http://blog.csdn.net/rodjohnsondoctor/article/details/38386919