赞
踩
如果想通过Java获取当天的0点时间,有两种方式:一种是通过Calendar;另外一种是通过SimpleDataFormat。下面分别介绍。
通过Calendar把时分秒字段清空,那么就是当天的0点0分0秒了。
- Calendar calendar = Calendar.getInstance();
- calendar.set(Calendar.SECOND, 0);
- calendar.set(Calendar.MINUTE, 0);
- calendar.set(Calendar.HOUR_OF_DAY, 0);
- calendar.set(Calendar.MILLISECOND, 0);
- long todayZero = calendar.getTimeInMillis();
通过日期格式进行日期的格式化,只保留年月日,也能得到当天的0点时间。
- SimpleDateFormat dayFormat = new SimpleDateFormat("yyyyMMdd");
- long todayZero = dayFormat.parse(dayFormat.format(new Date())).getTime();
测试代码如下所示,各执行100万次,Calendar耗时450ms, SimpleDataFormat耗时2000ms。可以看到Calendar的性能好一些。
- try {
- long start1 = System.currentTimeMillis();
- for (int i = 0; i < 1000000; i++) {
- Calendar calendar = Calendar.getInstance();
- calendar.set(Calendar.SECOND, 0);
- calendar.set(Calendar.MINUTE, 0);
- calendar.set(Calendar.HOUR_OF_DAY, 0);
- calendar.set(Calendar.MILLISECOND, 0);
- long todayZero = calendar.getTimeInMillis();
- }
- logger.info("Calendar elapse={}", System.currentTimeMillis() - start1);
- //17:53:29.451 [main] INFO com.autonavi.render.smartmap.WeatherTest - Calendar elapse=451
-
- long start2 = System.currentTimeMillis();
- for (int i = 0; i < 1000000; i++) {
- SimpleDateFormat dayFormat = new SimpleDateFormat("yyyyMMdd");
- long todayZero = dayFormat.parse(dayFormat.format(new Date())).getTime();
- }
- logger.info("SimpleDateFormat elapse={}", System.currentTimeMillis() - start2);
- //17:53:31.482 [main] INFO com.autonavi.render.smartmap.WeatherTest - SimpleDateFormat elapse=2027
-
- } catch (Exception e) {
- logger.error("errorMessage={}", e.getMessage(), e);
- }
Calendar 的性能要比 SimpleDataFormat好,建议使用Calendar。
另外,如果想要获取第二天零点的时间,直接 todayZero + 86400000 就可以了。
PS:写这篇文章主要是有个哥们儿的文章误导人,使用TimeZone.getDefault().getRawOffset()害人不浅,还不改,气死我了。鄙视他(https://www.cnblogs.com/cc-java/p/6699045.html)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。