博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SimpleDateFormat线程安全
阅读量:6281 次
发布时间:2019-06-22

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

hot3.png

private static final ThreadLocal
simpleDateFormatThreadLocal = new ThreadLocal
() { protected SimpleDateFormat initialValue() { return new SimpleDateFormat("dd/MM/yyyy"); } }; public String formatDate(Date input) { if (input == null) { return null; } return simpleDateFormatThreadLocal.get().format(input); } public Date parseDate(String input) throws ParseException { if (input == null) { return null; } return simpleDateFormatThreadLocal.get().parse(input); }

// 或者用jodd.time中的方法

// 或者用jodd.time中的方法// synchronized dateTimeFormatval sdf1: DateTimeFormatter = DateTimeFormat.forPattern("yyyy-MM-dd")// val sdf1 = new SimpleDateFormat("yyyy-MM-dd")// val sdf2 = new SimpleDateFormat("yyyyMMdd")val dateOfDay: DateTime = sdf1.parseDateTime(jMap("localtime"))// val dateDay = sdf2.format(sdf1.parse(jMap("localtime")))val dateDay = dateOfDay.toDate

转载于:https://my.oschina.net/lgscofield/blog/495006

你可能感兴趣的文章
Docker容器启动报WARNING: IPv4 forwarding is disabled. Networking will not work
查看>>
(转)第三方支付参与者
查看>>
程序员修炼之道读后感2
查看>>
DWR实现服务器向客户端推送消息
查看>>
js中forEach的用法
查看>>
Docker之功能汇总
查看>>
!!a标签和button按钮只允许点击一次,防止重复提交
查看>>
(轉貼) Eclipse + CDT + MinGW 安裝方法 (C/C++) (gcc) (g++) (OS) (Windows)
查看>>
还原数据库
查看>>
作业调度框架 Quartz.NET 2.0 beta 发布
查看>>
mysql性能的检查和调优方法
查看>>
项目管理中的导向性
查看>>
Android WebView 学习
查看>>
(转)从给定的文本中,查找其中最长的重复子字符串的问题
查看>>
HDU 2159
查看>>
spring batch中用到的表
查看>>
资源文件夹res/raw和assets的使用
查看>>
UINode扩展
查看>>
LINUX常用命令
查看>>
百度云盘demo
查看>>