热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Java操作MongoDB入门

插入代码太麻烦了,凑合看吧。Introduction介绍ThispageisabriefoverviewofworkingwiththeMongoDBJavaDriver.这是使用MongoDBjava驱动的简单说明。FormoreinformationabouttheJavaAPI,pleaserefertotheo
插入代码太麻烦了,凑合看吧。 

Introduction
介绍
This page is a brief overview of working with the MongoDB Java Driver.
这是使用MongoDB java驱动的简单说明。
For more information about the Java API, please refer to the online API Documentation for Java Driver
想获取更多关于java的API,请查看在线API文档。
A Quick Tour
Using the Java driver is very simple. First, be sure to include the driver jar mongo.jar in your classpath. The following code snippets come from the examples/QuickTour.java example code found in the driver.
使用很简单。首先将驱动mongo.jar放入classpath。下面的代码段是驱动中例子examples/QuickTour.java中的内容
Making A Connection
创建连接
To make a connection to a MongoDB, you need to have at the minimum, the name of a database to connect to. The database doesn't have to exist - if it doesn't, MongoDB will create it for you.
创建连接至少需要你要连接的数据库名。如果数据库不存在,MongoDB会自动创建。
Additionally, you can specify the server address and port when connecting. The following example shows three ways to connect to the database mydb on the local machine :
此外,你还可以指定数据库服务器地址和端口。下边的例子中有三种连接本机mydb数据库方法:

import com.mongodb.Mongo;
import com.mongodb.DB;
import com.mongodb.DBCollection;
import com.mongodb.BasicDBObject;
import com.mongodb.DBObject;
import com.mongodb.DBCursor;
Mongo m = new Mongo();
// or
Mongo m = new Mongo( "localhost" );
// or
Mongo m = new Mongo( "localhost" , 27017 );
DB db = m.getDB( "mydb" );

At this point, the db object will be a connection to a MongoDB server for the specified database. With it, you can do further operations.
db对象就是连接服务器中指定数据库的连接。使用他你可以做很多操作。
Note: The Mongo object instance actually represents a pool of connections to the database; you will only need one object of class Mongo even with multiple threads.  See the concurrency doc page for more information.
注意:Mongo的实例是数据库连接池;在多个线程中只需要一个实例。更多的介绍请参考concurrency 文档。
The Mongo class is designed to be thread safe and shared among threads. Typically you create only 1 instance for a given DB cluster and use it across your app. If for some reason you decide to create many mongo intances, note that:
Mongo类是线程安全和共享的。可以在整个应用中使用他。如果你想创建多个Mongo实例,注意:
all resource usage limits (max connections, etc) apply per mongo instance
每个mongo实例的资源使用限制
to dispose of an instance, make sure you call mongo.close() to clean up resources
记得使用mongo.close()关闭资源
Authentication (Optional)
授权(可选)
MongoDB can be run in a secure mode where access to databases is controlled through name and password authentication. When run in this mode, any client application must provide a name and password before doing any operations. In the Java driver, you simply do the following with the connected mongo object :
MongoDB可以运行在通过用户名和密码控制的安全的模式下。当以安全模式运行时,任何客户端应用程序的操作必须验证用户名和密码。在java中,验证很简单:

boolean auth = db.authenticate(myUserName, myPassword);

If the name and password are valid for the database, auth will be true. Otherwise, it will be false. You should look at the MongoDB log for further information if available.
如果用户名和密码正确,auth值为true。错误为false。在日志中可以看到更多有效的信息。
Most users run MongoDB without authentication in a trusted environment.
很多用户将MongoDB以非授权模式运行在安全的环境中。
Getting A List Of Collections
查询Collection的集合(Collection类似于表)
Each database has zero or more collections. You can retrieve a list of them from the db (and print out any that are there) :
每个数据库可以有任意个collection。通过db对象可以检索并打印出来:
Set colls = db.getCollectionNames();

for (String s : colls) {
    System.out.println(s);
}

and assuming that there are two collections, name and address, in the database, you would see
假如数据库中有name和address两个collection,结果输出入下
name
address

as the output.

Getting A Collection
得到Collection
To get a collection to use, just specify the name of the collection to the getCollection(String collectionName) method:
要使用collection,使用getCollection(String collectionName) 方法传入collection的名称:
DBCollection coll = db.getCollection("testCollection")

Once you have this collection object, you can now do things like insert data, query for data, etc
得到collection对象后就可以进行插入、查询等操作了。
Inserting a Document
插入一个文档(类似一条记录)
Once you have the collection object, you can insert documents into the collection. For example, lets make a little document that in JSON would be represented as
得到collection对象就可以把documents插入到collection中。例如,创建一个如下的JSON文档
{
   "name" : "MongoDB",
   "type" : "database",
   "count" : 1,
   "info" : {
x : 203,
y : 102
}
}

Notice that the above has an "inner" document embedded within it. To do this, we can use the BasicDBObject class to create the document (including the inner document), and then just simply insert it into the collection using the insert() method.
注意,上面的文档中有个内部文档(就是{ x : 203, y : 102})。存储上面的文档,可以使用BasicDBObject 类来创建文档(包括inner文档),使用insert()方法可以简单的把文档插入collection中。
        BasicDBObject doc = new BasicDBObject();

        doc.put("name", "MongoDB");
        doc.put("type", "database");
        doc.put("count", 1);

        BasicDBObject info = new BasicDBObject();

        info.put("x", 203);
        info.put("y", 102);

        doc.put("info", info);

        coll.insert(doc);

Finding the First Document In A Collection using findOne()
使用findOne()方法查找collection中的第一个文档document
To show that the document we inserted in the previous step is there, we can do a simple findOne() operation to get the first document in the collection. This method returns a single document (rather than the DBCursor that the find() operation returns), and it's useful for things where there only is one document, or you are only interested in the first. You don't have to deal with the cursor.
可以使用findOne()操作来查找collection中的第一个文档来显示上一步中插入的文档。方法返回一个文档,用来找只有一个文档或第一条文档很实用。可以不使用cursor(游标)
DBObject myDoc = coll.findOne();
System.out.println(myDoc);

and you should see
打印的结果
{ "_id" : "49902cde5162504500b45c2c" , "name" : "MongoDB" , "type" : "database" , "count" : 1 , "info" : { "x" : 203 , "y" : 102}}

Note the _id element has been added automatically by MongoDB to your document. Remember, MongoDB reserves element names that start with "_"/"$" for internal use.
注意,_id元素是MongoDB自动添加的。MongoDB内部的元素以"_"/"$"开始。
Adding Multiple Documents
添加多个文档
In order to do more interesting things with queries, let's add multiple simple documents to the collection. These documents will just be
为了方便下面的讲解,我们来添加多个简单的文档,入下
{
   "i" : value
}

and we can do this fairly efficiently in a loop
用循环来快速的实现
for (int i=0; i <100; i++) {
    coll.insert(new BasicDBObject().append("i", i));
}

Notice that we can insert documents of different "shapes" into the same collection. This aspect is what we mean when we say that MongoDB is "schema-free"
注意,可以在一个collection中插入不同类型的文档。就是说MongoDB是"schema-free"(什么意思?)
Counting Documents in A Collection
统计collection中所有的document数量
Now that we've inserted 101 documents (the 100 we did in the loop, plus the first one), we can check to see if we have them all using the getCount() method.
现在,插入了101个文档(循环的100个和第一个),使用getCount()检查一下。
System.out.println(coll.getCount());

and it should print 101.
输出结果是101.
Using a Cursor to Get All the Documents
使用游标查找所有的文档
In order to get all the documents in the collection, we will use the find() method. The find() method returns a DBCursor object which allows us to iterate over the set of documents that matched our query. So to query all of the documents and print them out :
使用find()来查找所有的document。find()方法查询返回一个可以遍历文档集合的DBCursor 对象。如下:
        DBCursor cur = coll.find();

        while(cur.hasNext()) {
System.out.println(cur.next());
        }

and that should print all 101 documents in the collection.
打印所有的document
Getting A Single Document with A Query
查询出单个文档
We can create a query to pass to the find() method to get a subset of the documents in our collection. For example, if we wanted to find the document for which the value of the "i" field is 71, we would do the following ;
可以通过find()方法查找部分document,例如,如果想查找i=71的document,这样做
        BasicDBObject query = new BasicDBObject();

        query.put("i", 71);

        cur = coll.find(query);

        while(cur.hasNext()) {
System.out.println(cur.next());
        }

and it should just print just one document
会打印找到的单个document
{ "_id" : "49903677516250c1008d624e" , "i" : 71 }

You may commonly see examples and documentation in MongoDB which use $ Operators, such as this:
MongoDB文档和例子中经常出现$操作符,如下
db.things.find({j: {$ne: 3}, k: {$gt: 10} });

These are represented as regular String keys in the Java driver, using embedded DBObjects:
他表示驱动中预设的字符:
        BasicDBObject query = new BasicDBObject();

        query.put("j", new BasicDBObject("$ne", 3));
        query.put("k", new BasicDBObject("$gt", 10));

        cur = coll.find(query);

        while(cur.hasNext()) {
System.out.println(cur.next());
        }


Getting A Set of Documents With a Query
查找多个文档
We can use the query to get a set of documents from our collection. For example, if we wanted to get all documents where "i" > 50, we could write :
例如,想找"i">50的文档,这样做:
        query = new BasicDBObject();


        query.put("i", new BasicDBObject("$gt", 50));  // e.g. find all where i > 50

        cur = coll.find(query);

        while(cur.hasNext()) {
System.out.println(cur.next());
        }

which should print the documents where i > 50. We could also get a range, say 20 会打印出i>50的文档。也可以查找范围如20         query = new BasicDBObject();

        query.put("i", new BasicDBObject("$gt", 20).append("$lte", 30));  // i.e.   20

        cur = coll.find(query);

        while(cur.hasNext()) {
System.out.println(cur.next());
        }

Creating An Index
创建索引
MongoDB supports indexes, and they are very easy to add on a collection. To create an index, you just specify the field that should be indexed, and specify if you want the index to be ascending (1) or descending (-1). The following creates an ascending index on the "i" field :
MongoDB支持索引,并且很容易添加。只需要指定索引的字段和排序(升序1,降序-1)。下面是创建i降序索引的例子:
        coll.createIndex(new BasicDBObject("i", 1));  // create index on "i", ascending

Getting a List of Indexes on a Collection
查询collection全部索引
You can get a list of the indexes on a collection :

        List list = coll.getIndexInfo();

        for (DBObject o : list) {
System.out.println(o);
        }

and you should see something like
打印如下
{ "name" : "i_1" , "ns" : "mydb.testCollection" , "key" : { "i" : 1} }

Quick Tour of the Administrative Functions
管理方法
Getting A List of Databases
查询所有数据库
You can get a list of the available databases:
打印出可用的数据库
        Mongo m = new Mongo();

        for (String s : m.getDatabaseNames()) {
System.out.println(s);
        }

Dropping A Database
删除数据库
You can drop a database by name using the Mongo object:
通过名称删除
m.dropDatabase("my_new_db");
 Loading...

--------------------------------------------------------------------------------

Added by Rian Murphy, last edited by Scott Hernandez on May 05, 2011
翻译:Noday(noday.net)于20110629晚 (没过4级的家伙,全凭感觉翻译,欢迎讨论指正)


推荐阅读
  • MongoDB核心概念详解
    本文介绍了NoSQL数据库的概念及其应用场景,重点解析了MongoDB的基本特性、数据结构以及常用操作。MongoDB是一个高性能、高可用且易于扩展的文档数据库系统。 ... [详细]
  • Java虚拟机及其发展历程
    Java虚拟机(JVM)是每个Java开发者日常工作中不可或缺的一部分,但其背后的运作机制却往往显得神秘莫测。本文将探讨Java及其虚拟机的发展历程,帮助读者深入了解这一关键技术。 ... [详细]
  • 本文介绍了如何使用Node.js通过两种不同的方法连接MongoDB数据库,包括使用MongoClient对象和连接字符串的方法。每种方法都有其特点和适用场景,适合不同需求的开发者。 ... [详细]
  • JavaScript 跨域解决方案详解
    本文详细介绍了JavaScript在不同域之间进行数据传输或通信的技术,包括使用JSONP、修改document.domain、利用window.name以及HTML5的postMessage方法等跨域解决方案。 ... [详细]
  • H5技术实现经典游戏《贪吃蛇》
    本文将分享一个使用HTML5技术实现的经典小游戏——《贪吃蛇》。通过H5技术,我们将探讨如何构建这款游戏的两种主要玩法:积分闯关和无尽模式。 ... [详细]
  • ### 优化后的摘要本学习指南旨在帮助读者全面掌握 Bootstrap 前端框架的核心知识点与实战技巧。内容涵盖基础入门、核心功能和高级应用。第一章通过一个简单的“Hello World”示例,介绍 Bootstrap 的基本用法和快速上手方法。第二章深入探讨 Bootstrap 与 JSP 集成的细节,揭示两者结合的优势和应用场景。第三章则进一步讲解 Bootstrap 的高级特性,如响应式设计和组件定制,为开发者提供全方位的技术支持。 ... [详细]
  • V8不仅是一款著名的八缸发动机,广泛应用于道奇Charger、宾利Continental GT和BossHoss摩托车中。自2008年以来,作为Chromium项目的一部分,V8 JavaScript引擎在性能优化和技术创新方面取得了显著进展。该引擎通过先进的编译技术和高效的垃圾回收机制,显著提升了JavaScript的执行效率,为现代Web应用提供了强大的支持。持续的优化和创新使得V8在处理复杂计算和大规模数据时表现更加出色,成为众多开发者和企业的首选。 ... [详细]
  • 美团安全响应中心推出全新配送业务测试活动,带来双重福利,邀您共同参与! ... [详细]
  • Vue CLI 基础入门指南
    本文详细介绍了 Vue CLI 的基础使用方法,包括环境搭建、项目创建、常见配置及路由管理等内容,适合初学者快速掌握 Vue 开发环境。 ... [详细]
  • 本文探讨了如何在 Spring MVC 框架下,通过自定义注解和拦截器机制来实现细粒度的权限管理功能。 ... [详细]
  • 吴石访谈:腾讯安全科恩实验室如何引领物联网安全研究
    腾讯安全科恩实验室曾两次成功破解特斯拉自动驾驶系统,并远程控制汽车,展示了其在汽车安全领域的强大实力。近日,该实验室负责人吴石接受了InfoQ的专访,详细介绍了团队未来的重点方向——物联网安全。 ... [详细]
  • 2023年,Android开发前景如何?25岁还能转行吗?
    近期,关于Android开发行业的讨论在多个平台上热度不减,许多人担忧其未来发展。本文将探讨当前Android开发市场的现状、薪资水平及职业选择建议。 ... [详细]
  • 软件测试行业深度解析:迈向高薪的必经之路
    本文深入探讨了软件测试行业的发展现状及未来趋势,旨在帮助有志于在该领域取得高薪的技术人员明确职业方向和发展路径。 ... [详细]
  • 华为与红帽联手,加速开源电信软件革新
    华为与红帽携手合作,旨在加速开源电信软件的发展,以满足大型电信运营商对灵活网络解决方案的需求。 ... [详细]
  • 调试利器SSH隧道
    在开发微信公众号或小程序的时候,由于微信平台规则的限制,部分接口需要通过线上域名才能正常访问。但我们一般都会在本地开发,因为这能快速的看到 ... [详细]
author-avatar
振芳婉仁正君
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有