查询两个日期之间的数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查询两个日期之间的数据相关的知识,希望对你有一定的参考价值。

我需要从在线服务器中托管的Mongodb数据中获取两个日期之间的数据。我尝试了这个代码,它在我的Localhost(本地数据和实时数据)中运行良好。但是,当我在线上传应用程序时,它在Live中无法正常工作。

实时网站的结果不准确。它在指定日期之前和之后获取一些记录。例如,我给出日期01-02-2018和28-02-2018,结果随附31-01-2018和01-03-2018的记录。

我认为问题是日期存储在UTC时区(2018-02-15T23:33:30.000Z)。

码:

SimpleDateFormat format = new SimpleDateFormat("dd-MM-yyyy HH:mm:ss");      

Date fromDate = format.parse(from + " 00:00:00");
Date  toDate = format.parse(to + " 23:59:59");

Calendar cal = Calendar.getInstance();
cal.setTime(order.getOrderDate());
SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy HH:mm:ss");
sdf.setTimeZone(TimeZone.getTimeZone("Asia/Kolkata"));      
String strDate = sdf.format(cal.getTime());
Date orderDate = sdf.parse(strDate);

for(Order order : orders)
    if(orderDate.after(fromDate) || orderDate.equals(fromDate) && orderDate.before(toDate) || orderDate.equals(toDate))
    //do something
    

答案

java.util.Date doesn't have a timezone in it,因此解析和格式化订单日期毫无意义。格式化将其转换为String并解析将其转换回Date,这是毫无意义的,因为订单日期已经是Date对象。

你必须在第一个格式化程序(format变量)中设置时区,然后解析from和to日期:它们将被设置为加尔各答时区的相应日期和时间 - 在这种情况下它是有效的,因为你有字符串和想要将它们转换为日期。

然后使用额外的括号进行比较以避免任何歧义(如评论中所指出的)。并且将Date设置为Calendar没有意义,只是为了稍后再回来 - Calendar实例在你的代码中没有任何意义。

getOrderDate的调用不应该在for循环中?

完整的代码将是这样的:

SimpleDateFormat format = new SimpleDateFormat("dd-MM-yyyy HH:mm:ss");      
// from and to dates are from Kolkata's timezone, so the formatter must know that
format.setTimeZone(TimeZone.getTimeZone("Asia/Kolkata"));      

// dates will be equivalent to this date and time in Kolkata, although
// the date itself doesn't store the timezone in it
Date fromDate = format.parse(from + " 00:00:00");
Date  toDate = format.parse(to + " 23:59:59");

for(Order order : orders)
    Date orderDate = order.getOrderDate();
    // note the extra parenthesis, they make all the difference
    if( (orderDate.after(fromDate) || orderDate.equals(fromDate)) &&
        (orderDate.before(toDate) || orderDate.equals(toDate)) ) 
    ....
    

如果你有Java> = 8,最好使用java.time API:

DateTimeFormatter fmt = DateTimeFormatter.ofPattern("dd-MM-yyyy");
ZoneId zone = ZoneId.of("Asia/Kolkata");
ZonedDateTime fromDate = LocalDate
    // parse "from" string
    .parse(from, fmt)
    // start of day at Kolkata timezone
    .atStartOfDay(zone);
ZonedDateTime toDate = LocalDate
    // parse "to" string
    .parse(to, fmt)
    // get start of next day
    .plusDays(1).atStartOfDay(zone);

// convert the Date to ZonedDateTime
for (Order order : orders) 
    ZonedDateTime orderDate = order.getOrderDate().toInstant().atZone(zone);
    if ((orderDate.isAfter(fromDate) || orderDate.isEqual(fromDate)) && (orderDate.isBefore(toDate))) 
        ...
    

这是一个不同的代码,因为这个API引入了新的类型和概念,但它与以前的API相比有了很大的改进(DateCalendar是凌乱的,错误的和过时的)。

花一些时间研究这个API,它是完全值得的:https://docs.oracle.com/javase/tutorial/datetime/

以上是关于查询两个日期之间的数据的主要内容,如果未能解决你的问题,请参考以下文章

查询两个日期之间的数据

SQL查询从两列中检索两个日期之间的数据

mysql如何提取两个日期之间的所有数据

获取在两个日期之间发布的数据

CakePHP 查找两个日期之间查询的条件

MYSQL:使用 date_format 查询两个日期之间的数据不起作用