我在mongo db中存储了string、arraylist、objectid、date等字段。。我只想得到java中数据类型为string的字段。到目前为止,我已经编写了以下代码:
MongoCollection<Document> mongoCollection = database.getCollection(collectionName);
Iterable<Document> fields = mongoCollection.find();
但它返回集合中的所有字段,而不考虑数据类型,即string是否有其他方法仅获取数据类型string的字段?
1条答案
按热度按时间lskq00tm1#
$type
是你要找的接线员。参考
操场