博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用FastDateFormat来代替JDK自带的DateFormat
阅读量:6295 次
发布时间:2019-06-22

本文共 757 字,大约阅读时间需要 2 分钟。

之前一直使用SimpleDateFormat来做Date到String的类型转换,现建议使用apache commons-lang3中的FastDateFormat。

因为JDK里自带的SimpleDateFormat存在线程安全问题,而且FastDateFormat的效率要高于SimpleDateFormat。

maven依赖:

org.apache.commons
commons-lang3
3.5

代码:

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));    }}

 其实,commons-lang3包中针对FastDateFormat这个类封装了一个工具类给我们使用!DateFormatUtils~

public class Test {    public static void main(String[] args) {        String format = DateFormatUtils.format(new Date(), "yyyy-MM-dd HH:mm:ss");        System.out.println(format);    }}

 

转载地址:http://umpta.baihongyu.com/

你可能感兴趣的文章
sbin/hadoop-daemon.sh: line 165: /tmp/hadoop-hxsyl-journalnode.pid: Permission denied
查看>>
@RequestMapping 用法详解之地址映射
查看>>
254页PPT!这是一份写给NLP研究者的编程指南
查看>>
《Data Warehouse in Action》
查看>>
String 源码浅析(一)
查看>>
Spring Boot 最佳实践(三)模板引擎FreeMarker集成
查看>>
Fescar 发布 0.2.3 版本,支持 Redis 和 Apollo
查看>>
Google MapReduce到底解决什么问题?
查看>>
CCNP-6 OSPF试验2(BSCI)
查看>>
Excel 2013 全新的图表体验
查看>>
openstack 制作大于2TB根分区自动扩容的CENTOS镜像
查看>>
Unbuntu安装遭遇 vmware上的Easy install模式
查看>>
几个常用的ASP木马
查看>>
python分析postfix邮件日志的状态
查看>>
Mysql-5.6.x多实例配置
查看>>
psutil
查看>>
在git@osc上托管自己的代码
查看>>
机器学习算法:朴素贝叶斯
查看>>
小五思科技术学习笔记之扩展访问列表
查看>>
使用Python脚本检验文件系统数据完整性
查看>>