如何在netbeans中使用java在mongodb数据库中搜索条目?

时间:2014-09-14 18:30:32

标签: java mongodb search netbeans

我在Mongodb中创建了一个数据库,并且有一些条目的集合。我想使用Java搜索一个条目并显示它。我使用Netbeans作为我的IDE。我尝试在互联网上搜索,但无法找到任何相关内容。我是Java和Mongodb的新手。

1 个答案:

答案 0 :(得分:0)

 DBObject result = new Mongo().getDb("yourDatabaseName").getCollection("yourTableName").findOne(new BasicDBObject("id", id), new BasicDBObject("specialColumn", 1));
return result.get("specialColumn")

此示例将搜索字段" specialColumn"在集合" yourTableName"用id" id"! 提供了更多像.find()这样的方法,您可以使用DBCursor进行处理以检查结果!

http://docs.mongodb.org/manual/tutorial/query-documents/