查询MongoDB-Java中的数据去掉_id只显示指定字段
Querying data in MongoDB-Java to remove _id and show only specified field
作为我大学作业的一部分,我正在 Eclipse 中完成一个 Java 项目。该项目的要求之一是将数据写入文本文件并在另一个 class 中将其读回。但是,我决定使用 MongoDB
而不是文本文件。
数据格式如下:
Data
当我从 Mongo 读回数据时,我使用以下代码:
MongoClientURI connectionString = new MongoClientURI("<My connection string>");
MongoClient mongoClient = new MongoClient(connectionString);
MongoDatabase database = mongoClient.getDatabase("Timeline");
MongoCollection<Document> collection = database.getCollection("HistoricalFigure");
MongoCursor<Document> cursor = collection.find().iterator();
try {
while (cursor.hasNext()) {
system.out.println(cursor.next().toJson());
}
} finally {
cursor.close();
}
这很好用,打印了我的 Mongo collection
中的以下内容:
Result
(忽略数据 - 只是随机将其丢弃)
我知道过去有人问过类似的问题,关于从结果中删除 _id 字段等 - 对此深表歉意 - 但不幸的是,我无法将这些示例应用到我自己的代码中,因为它们确实有很大差异。
我想由此实现的是仅将 Historical Figure
的值打印到控制台,以便它打印:
Desired outcome
如果有人可以提供帮助,我将不胜感激 - 我认为答案会在 collection.find()
中的某个地方,但我不确定如何。
非常感谢,
乔治
Mongo Java 驱动程序 v3.x 为此提供了一个有用的投影快捷方式:Projections.excludeId()
.
但这只是语法糖:new BsonDocument("_id", new BsonInt32(0))
因此,如果您使用的是 Mongo Java 驱动程序版本 >= 3.x 那么只需将此投影添加到您的 find()
调用中:
collection.find().projection(Projections.excludeId()).iterator();
如果您使用的是 Mongo Java 驱动程序版本 < 3.x 那么只需将此投影添加到您的 find()
调用中:
collection.find().projection(new BsonDocument("_id", new BsonInt32(0))).iterator();
此投影指示 Mongo 不 在 find
调用返回的任何文档中包含 _id
属性。
U 可以传递一个对象字面量,id 设置为 -1,历史数据设置为 1。
Collection.find({},{'_id':0,'Historical figure':1})
作为我大学作业的一部分,我正在 Eclipse 中完成一个 Java 项目。该项目的要求之一是将数据写入文本文件并在另一个 class 中将其读回。但是,我决定使用 MongoDB
而不是文本文件。
数据格式如下:
Data
当我从 Mongo 读回数据时,我使用以下代码:
MongoClientURI connectionString = new MongoClientURI("<My connection string>");
MongoClient mongoClient = new MongoClient(connectionString);
MongoDatabase database = mongoClient.getDatabase("Timeline");
MongoCollection<Document> collection = database.getCollection("HistoricalFigure");
MongoCursor<Document> cursor = collection.find().iterator();
try {
while (cursor.hasNext()) {
system.out.println(cursor.next().toJson());
}
} finally {
cursor.close();
}
这很好用,打印了我的 Mongo collection
中的以下内容:
Result
(忽略数据 - 只是随机将其丢弃)
我知道过去有人问过类似的问题,关于从结果中删除 _id 字段等 - 对此深表歉意 - 但不幸的是,我无法将这些示例应用到我自己的代码中,因为它们确实有很大差异。
我想由此实现的是仅将 Historical Figure
的值打印到控制台,以便它打印:
Desired outcome
如果有人可以提供帮助,我将不胜感激 - 我认为答案会在 collection.find()
中的某个地方,但我不确定如何。
非常感谢, 乔治
Mongo Java 驱动程序 v3.x 为此提供了一个有用的投影快捷方式:Projections.excludeId()
.
但这只是语法糖:new BsonDocument("_id", new BsonInt32(0))
因此,如果您使用的是 Mongo Java 驱动程序版本 >= 3.x 那么只需将此投影添加到您的 find()
调用中:
collection.find().projection(Projections.excludeId()).iterator();
如果您使用的是 Mongo Java 驱动程序版本 < 3.x 那么只需将此投影添加到您的 find()
调用中:
collection.find().projection(new BsonDocument("_id", new BsonInt32(0))).iterator();
此投影指示 Mongo 不 在 find
调用返回的任何文档中包含 _id
属性。
U 可以传递一个对象字面量,id 设置为 -1,历史数据设置为 1。
Collection.find({},{'_id':0,'Historical figure':1})