SimpleDateFormat的线程安全问题——>报java.lang.NumberFormatException: multiple points或 For input string:

上一篇定时多线程补全任务后续处理报了标题中的异常,发现是日期转换的问题,最后定位到SimpleDateFormat是线程不安全的

 

解决方案:

1、使用局部变量,每次处理时new SimpleDateFormat()

2、使用同步,不推荐,对性能有影响

3、使用ThreadLocal

public class DateUtil {
 
   private final static ThreadLocal<simpledateformat> tl = new ThreadLocal<simpledateformat>() {
      @Override
      protected SimpleDateFormat initialValue() {
           return new SimpleDateFormat("dd/MM/yyyy");
  }
 };
    public static Date parse(String dateStr) throws ParseException {
        return threadLocal.get().parse(dateStr);
    }

    public static String format(Date date) {
        return threadLocal.get().format(date);
    }
}

4、使用第三方的日期处理函数:

4.1、使用Apache commons 里的FastDateFormat,宣称是既快又线程安全的SimpleDateFormat, 不过它只能对日期进行format, 不能对日期串进行解析。

4.2、使用Joda-Time类库来处理时间相关问题

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值