在項目開發過程當中中常常遇到時間處理,可是你真的用對了嗎,理解阿里巴巴開發手冊中禁用static修飾SimpleDateFormat嗎
經過閱讀本篇文章你將瞭解到:java
LocalDate
、LocalTime
、LocalDateTime
【java8新提供的類】java8
新的時間API
的使用方式,包括建立、格式化、解析、計算、修改Date
若是不格式化,打印出的日期可讀性差安全
Tue Sep 10 09:34:04 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)
方法裏主要完成了併發
- 1. 重置日期對象cal的屬性值 - 2. 使用calb中中屬性設置cal - 3. 返回設置好的cal對象
可是這三步不是原子操做app
多線程併發如何保證線程安全性能
- 避免線程之間共享一個`SimpleDateFormat`對象,每一個線程使用時都建立一次`SimpleDateFormat`對象 => 建立和銷燬對象的開銷大 - 對使用`format`和`parse`方法的地方進行加鎖 => 線程阻塞性能差 - 使用`ThreadLocal`保證每一個線程最多隻建立一次`SimpleDateFormat`對象 => 較好的方法
Date
對時間處理比較麻煩,好比想獲取某年、某月、某星期,以及n
天之後的時間,若是用Date
來處理的話真是太難了,你可能會說Date
類不是有getYear
、getMonth
這些方法嗎,獲取年月日很Easy
,但都被棄用了啊只會獲取年月日spa
建立LocalDate
線程
//獲取當前年月日 LocalDate localDate = LocalDate.now(); //構造指定的年月日 LocalDate localDate1 = LocalDate.of(2019, 9, 10);
獲取年、月、日、星期幾code
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);
只會獲取幾點幾分幾秒orm
建立LocalTime
LocalTime localTime = LocalTime.of(13, 51, 10); 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);
獲取年月日時分秒,等於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
對象
Instant instant = Instant.now();
獲取秒數
long currentSecond = instant.getEpochSecond();
獲取毫秒數
long currentMilli = instant.toEpochMilli();
我的以爲若是隻是爲了獲取秒數或者毫秒數,使用System.currentTimeMillis()
來得更爲方便
LocalDate
、LocalTime
、LocalDateTime
、Instant
爲不可變對象,修改這些對象對象會返回一個副本
以LocalDateTime
爲例
LocalDateTime localDateTime = LocalDateTime.of(2019, Month.SEPTEMBER, 10, 14, 46, 56); //增長一年 localDateTime = localDateTime.plusYears(1); localDateTime = localDateTime.plus(1, ChronoUnit.YEARS); //減小一個月 localDateTime = localDateTime.minusMonths(1); localDateTime = localDateTime.minus(1, ChronoUnit.MONTHS);
經過with
修改某些值
//修改年爲2019 localDateTime = localDateTime.withYear(2020); //修改成2022 localDateTime = localDateTime.with(ChronoField.YEAR, 2022);
還能夠修改月、日
好比有些時候想知道這個月的最後一天是幾號、下個週末是幾號,經過提供的時間和日期API能夠很快獲得答案
LocalDate localDate = LocalDate.now(); LocalDate localDate1 = localDate.with(firstDayOfYear());
好比經過firstDayOfYear()
返回了當前日期的第一天日期,還有不少方法這裏不在舉例說明
LocalDate localDate = LocalDate.of(2019, 9, 10); String s1 = localDate.format(DateTimeFormatter.BASIC_ISO_DATE); String s2 = localDate.format(DateTimeFormatter.ISO_LOCAL_DATE); //自定義格式化 DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("dd/MM/yyyy"); String s3 = localDate.format(dateTimeFormatter);
DateTimeFormatter
默認提供了多種格式化方式,若是默認提供的不能知足要求,能夠經過DateTimeFormatter
的ofPattern
方法建立自定義格式化方式
LocalDate localDate1 = LocalDate.parse("20190910", DateTimeFormatter.BASIC_ISO_DATE); LocalDate localDate2 = LocalDate.parse("2019-09-10", DateTimeFormatter.ISO_LOCAL_DATE);
和SimpleDateFormat
相比,DateTimeFormatter
是線程安全的
LocalDateTime
:Date
有的我都有,Date
沒有的我也有,日期選擇請Pick Me