MongoCollection<Document> Person_List = db.getCollection("Person");
MongoCollection<Document> active_list = db.getCollection("activelist");
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-DD");
String todaydate = format.format(new Date());
ArrayList<Document>
activeList=Person_List.find(Filters.regex("LastUpdate",todayDate.toString())).into(new
ArrayList<Document>());
这是我们编写的代码,在这里我们需要从Todaydate获取月份,并且需要与LastUpdate字段的月份进行比较,如何从mongo db中的LastUpdate文档字段获取月份,LastUpdate是日期字符串,有人可以帮我吗?