SimpleDateFormat ThreaLocal 线程不安全 性能问题
程序员文章站
2022-05-25 14:51:25
...
使用simpleDateFormat的时候,有时会报错:
java.lang.NumberFormatException: multiple points
报此错是因为SimpleDateFormat是线程非安全的,如果在每个方法中使用到SimpleDateFormat对象的时候,就会短暂的创建SimpleDateFormat对象,方法执行完后被回收,这样做内存开销比较大;在类中定义一个static的SimpleDateFormat变量,线程不安全,报上面的错误;现在有一个折中的方法, 使用ThreadLocal,为每一个线程创建一个SimpleDateFormat对象,这样既可以避免线程安全问题,又可以一定程度避免创建很多的SimpleDateFormat对象,以下是简单的实例:
public class DateFormatUtils { private static ThreadLocal<SimpleDateFormat> sdfLocal = new ThreadLocal<SimpleDateFormat>(); public static SimpleDateFormat getSdf (String formatPattern) { SimpleDateFormat sdf = sdfLocal.get(); if (sdf == null) { sdf = new SimpleDateFormat(formatPattern); sdfLocal.set(sdf); } return sdf; } }
下一篇: mysql 返回多个函数计算结果