美文网首页java编程积累
时间格式化工具的使用

时间格式化工具的使用

作者: 风一样的存在 | 来源:发表于2018-11-22 20:10 被阅读0次

           最常用的使用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是线程安全的。

    相关文章

      网友评论

        本文标题:时间格式化工具的使用

        本文链接:https://www.haomeiwen.com/subject/hkjrqqtx.html