最常用的使用SimpleDateFormat进行格式化日期,但是这里往往是线程不安全的。所以一直是ThreadLocal和SimpleDateFormat相结合。
ThreadLocal和SimpleDateFormat当然可以使用commons-lang3这个apache提供的jar里面实现的org.apache.commons.lang3.time.DateFormatUtils和org.apache.commons.lang3.time.DateUtils
DateUtils和DateFormatUtils的使用jdk1.8之后提供的DateTimeFormatter是线程安全的。
网友评论