码迷,mamicode.com
首页 > 其他好文 > 详细

使用FastDateFormat来代替JDK自带的DateFormat

时间:2017-07-15 22:44:37      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:style   imp   代码   oid   cti   code   str   enc   main   

SimpleDateFormat来做Date到String的类型转换,建议使用apache commons-lang中的FastDateFormat。

因为JDK里自带的SimpleDateFormat存在线程不安全问题。经测试,FastDateFormat的效率高于SimpleDateFormat。

maven依赖:

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-lang3</artifactId>
    <version>3.5</version>
</dependency>

代码:

public class Test {
    public static void main(String[] args) {
        Date date = new Date();
        FastDateFormat fdf = FastDateFormat.getInstance("yyyy-MM-dd");
        System.out.println(fdf.format(date));
    }
}

 

使用FastDateFormat来代替JDK自带的DateFormat

标签:style   imp   代码   oid   cti   code   str   enc   main   

原文地址:http://www.cnblogs.com/winner-0715/p/7185744.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!