我试图将日期从Java到mongoDB进行比较,如下所示。但是它不能正常工作。

Java代码:

Calendar calendar1 = Calendar.getInstance();
               calendar1.setTime(new java.util.Date());
                calendar1.set(Calendar.HOUR_OF_DAY, 00);
                calendar1.set(Calendar.MINUTE, 00);
                calendar1.set(Calendar.SECOND, 00);
                calendar1.set(Calendar.MILLISECOND, 000);
                Date a1 = new Date();
                a1 = calendar.getTime();

MongoDatabase database = mongo.getDatabase("dummy");
        MongoCollection<Document> dbCollection= database.getCollection("something");
        long count = dbCollection.count(Filters.and(Filters.gte("startTime", a1)));


Mongo DB系列

{
    "_id" : ObjectId("586cd802de77f23f"),
    "name" : "sim",
    "serverity" : "high",
    "startTime" : ISODate("2017-01-04T11:11:32.058Z")
}

最佳答案

我在这里犯了一个错误

而不是使用

a1 = calendar1.getTime();


我用了

a1 = calendar.getTime();


因此,它使用Wed Jan 04 23:55:55 IST 2017,因此代码无法正常工作。

上面的代码工作正常。

07-27 14:03