为什么不建议使用Date,而是使用Java8新的时间和日期API?
java 8:新的时间和日期api
在java 8之前,所有关于时间和日期的api都存在各种使用方面的缺陷,因此建议使用新的时间和日期api,分别从旧的时间和日期的api的缺点以及解决方法、java 8 新的时间和日期api进行讲解。
旧的时间和日期的api的缺陷
java 的 java.util.date 和 java.util.calendar 类易用性差,不支持时区,而且都不是线程安全的。
date如果不格式化,打印出的日期可读性差。
thu sep 12 13:47:34 cst 2019
可以使用 simpledateformat 对时间进行格式化,但 simpledateformat 是线程不安全的,simpledateformat 的 format 方法源码如下:
private stringbuffer format(date date, stringbuffer toappendto, fielddelegate delegate) { // convert input date to time field list calendar.settime(date); boolean usedateformatsymbols = usedateformatsymbols(); for (int i = 0; i < compiledpattern.length; ) { int tag = compiledpattern[i] >>> 8; int count = compiledpattern[i++] & 0xff; if (count == 255) { count = compiledpattern[i++] << 16; count |= compiledpattern[i++]; } switch (tag) { case tag_quote_ascii_char: toappendto.append((char)count); break; case tag_quote_chars: toappendto.append(compiledpattern, i, count); i += count; break; default: subformat(tag, count, delegate, toappendto, usedateformatsymbols); break; } } return toappendto; }
其中 calendar 是共享变量,并且这个共享变量没有做线程安全控制。当多个线程同时使用相同的 simpledateformat 对象【如用static修饰的 simpledateformat 】调用format方法时,多个线程会同时调用 calendar.settime 方法,可能一个线程刚设置好 time 值另外的一个线程马上把设置的 time 值给修改了导致返回的格式化时间可能是错误的。
在多并发情况下使用 simpledateformat 需注意。
simpledateformat 除了 format 是线程不安全以外,parse 方法也是线程不安全的。parse 方法实际调用 alb.establish(calendar).gettime() 方法来解析,alb.establish(calendar) 方法里主要完成了
- 重置日期对象cal的属性值
- 使用calb中中属性设置cal
- 返回设置好的cal对象
但是这三步不是原子操作,导致解析出来的时间可以是错误的。
date对时间处理比较麻烦,比如想获取某年、某月、某星期,以及 n 天以后的时间,如果用date来处理的话真是太难了,并且 date 类的 getyear、getmonth 这些方法都被弃用了。
多线程并发如何保证线程安全
避免线程之间共享一个 simpledateformat 对象,每个线程使用时都创建一次 simpledateformat 对象 => 创建和销毁对象的开销大
对使用 format 和 parse 方法的地方进行加锁 => 线程阻塞性能差
使用 threadlocal 保证每个线程最多只创建一次 simpledateformat 对象 => 较好的方法
java 8 新的时间和日期api
java 8的日期和时间类包含 localdate、localtime、instant、duration 以及 period,这些类都包含在 java.time 包中,java 8 新的时间api的使用方式,包括创建、格式化、解析、计算、修改,下面我们看下如何去使用。
localdate 只会获取年月日
// 创建 localdate // 获取当前年月日 localdate localdate = localdate.now(); // 构造指定的年月日 localdate localdate1 = localdate.of(2019, 9, 12); // 获取年、月、日、星期几 int year = localdate.getyear(); int year1 = localdate.get(chronofield.year); month month = localdate.getmonth(); int month1 = localdate.get(chronofield.month_of_year); int day = localdate.getdayofmonth(); int day1 = localdate.get(chronofield.day_of_month); dayofweek dayofweek = localdate.getdayofweek(); int dayofweek1 = localdate.get(chronofield.day_of_week);
localtime 只会获取时分秒
// 创建 localtime localtime localtime = localtime.of(14, 14, 14); localtime localtime1 = localtime.now(); // 获取小时 int hour = localtime.gethour(); int hour1 = localtime.get(chronofield.hour_of_day); // 获取分 int minute = localtime.getminute(); int minute1 = localtime.get(chronofield.minute_of_hour); // 获取秒 int second = localtime.getminute(); int second1 = localtime.get(chronofield.second_of_minute);
localdatetime 获取年月日时分秒,相当于 localdate + localtime
// 创建 localdatetime localdatetime localdatetime = localdatetime.now(); localdatetime localdatetime1 = localdatetime.of(2019, month.september, 10, 14, 46, 56); localdatetime localdatetime2 = localdatetime.of(localdate, localtime); localdatetime localdatetime3 = localdate.attime(localtime); localdatetime localdatetime4 = localtime.atdate(localdate); // 获取localdate localdate localdate2 = localdatetime.tolocaldate(); // 获取localtime localtime localtime2 = localdatetime.tolocaltime();
instant 获取秒数,用于表示一个时间戳(精确到纳秒)
如果只是为了获取秒数或者毫秒数,可以使用 system.currenttimemillis()。
// 创建instant对象 instant instant = instant.now(); // 获取秒数 long currentsecond = instant.getepochsecond(); // 获取毫秒数 long currentmilli = instant.toepochmilli();
duration 表示一个时间段
// duration.between()方法创建 duration 对象 localdatetime from = localdatetime.of(2017, month.january, 1, 00, 0, 0); // 2017-01-01 00:00:00 localdatetime to = localdatetime.of(2019, month.september, 12, 14, 28, 0); // 2019-09-15 14:28:00 duration duration = duration.between(from, to); // 表示从 from 到 to 这段时间 long days = duration.todays(); // 这段时间的总天数 long hours = duration.tohours(); // 这段时间的小时数 long minutes = duration.tominutes(); // 这段时间的分钟数 long seconds = duration.getseconds(); // 这段时间的秒数 long milliseconds = duration.tomillis(); // 这段时间的毫秒数 long nanoseconds = duration.tonanos(); // 这段时间的纳秒数
修改 localdate、localtime、localdatetime、instant。
localdate、localtime、localdatetime、instant 为不可变对象,修改这些对象对象会返回一个副本。
增加、减少年数、月数、天数等,以localdatetime为例:
localdatetime localdatetime = localdatetime.of(2019, month.september, 12, 14, 32, 0); // 增加一年 localdatetime = localdatetime.plusyears(1); localdatetime = localdatetime.plus(1, chronounit.years); // 减少一个月 localdatetime = localdatetime.minusmonths(1); localdatetime = localdatetime.minus(1, chronounit.months); // 通过with修改某些值 // 修改年为2020 localdatetime = localdatetime.withyear(2020); localdatetime = localdatetime.with(chronofield.year, 2020); // 时间计算 // 获取该年的第一天 localdate localdate = localdate.now(); localdate localdate1 = localdate.with(firstdayofyear());
temporaladjusters 包含许多静态方法,可以直接调用,以下列举一些:
方法名 | 描述 |
---|---|
dayofweekinmonth | 返回同一个月中每周的第几天 |
firstdayofmonth | 返回当月的第一天 |
firstdayofnextmonth | 返回下月的第一天 |
firstdayofnextyear | 返回下一年的第一天 |
firstdayofyear | 返回本年的第一天 |
firstinmonth | 返回同一个月中第一个星期几 |
lastdayofmonth | 返回当月的最后一天 |
lastdayofnextmonth | 返回下月的最后一天 |
lastdayofnextyear | 返回下一年的最后一天 |
lastdayofyear | 返回本年的最后一天 |
lastinmonth | 返回同一个月中最后一个星期几 |
next / previous | 返回后一个/前一个给定的星期几 |
nextorsame / previousorsame | 返回后一个/前一个给定的星期几,如果这个值满足条件,直接返回 |
格式化时间
localdate localdate = localdate.of(2019, 9, 12); string s1 = localdate.format(datetimeformatter.basic_iso_date); string s2 = localdate.format(datetimeformatter.iso_local_date); // 自定义格式化 datetimeformatter datetimeformatter = datetimeformatter.ofpattern("yyyy-mm-dd hh:mm:ss"); string s3 = localdate.format(datetimeformatter);
解析时间
localdate localdate1 = localdate.parse("20190912", datetimeformatter.basic_iso_date); localdate localdate2 = localdate.parse("2019-09-12", datetimeformatter.iso_local_date);
总结
和 simpledateformat 相比,datetimeformatter 是线程安全的。
instant 的精确度更高,可以精确到纳秒级。
duration 可以便捷得到时间段内的天数、小时数等。
localdatetime 能够快速地获取年、月、日、下一月等。
temporaladjusters 类中包含许多常用的静态方法,避免自己编写工具类。