次のクエリを Java コードに変換する必要があります
dbName
db.collectionName.find({},{reference:1})を使用します
キー「参照」の値をフェッチしようとしています
私は次のことを試しましたが、これは方法ではないようです
Mongo dbConnection;
DB dbobject;
dbConnection = new Mongo("localhost", 27017);
dbobject = dbConnection.getDB("dbName");
DBCollection profileCollection = dbobject.getCollection("collectionName");
BasicDBObject query = new BasicDBObject();
query.put("{},{reference:1}");
DBCursor mongocursor =profileCollection.find("{}, {reference:1}");
try {
while(mongocursor.hasNext()) {
System.out.println(mongocursor.next().get("reference"));
}
} finally {
mongocursor.close();
}