本文介绍了使用ThreadLocal进行日期转换的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要求使用<$将传入日期字符串格式20130212(YYYYMMDD)转换为12/02/2013(DD / MM / YYYY)
I have a requirement to convert incoming date string format "20130212" (YYYYMMDD) to 12/02/2013 (DD/MM/YYYY)
C $ C> ThreadLocal的。我知道在没有 ThreadLocal
的情况下执行此操作的方法。任何人都可以帮助我吗?
using ThreadLocal
. I know a way to do this without the ThreadLocal
. Can anyone help me?
没有 ThreadLocal :
final SimpleDateFormat format2 = new SimpleDateFormat("MM/dd/yyyy");
final SimpleDateFormat format1 = new SimpleDateFormat("yyyyMMdd");
final Date date = format1.parse(tradeDate);
final Date formattedDate = format2.parse(format2.format(date));
推荐答案
Java中的ThreadLocal是一种实现线程安全的方法除了编写不可变类。由于SimpleDateFormat不是线程安全的,您可以使用ThreadLocal使其线程安全。
ThreadLocal in Java is a way to achieve thread-safety apart from writing immutable classes. Since SimpleDateFormat is not thread safe, you can use a ThreadLocal to make it thread safe.
class DateFormatter{
private static ThreadLocal<SimpleDateFormat> outDateFormatHolder = new ThreadLocal<SimpleDateFormat>() {
@Override
protected SimpleDateFormat initialValue() {
return new SimpleDateFormat("MM/dd/yyyy");
}
};
private static ThreadLocal<SimpleDateFormat> inDateFormatHolder = new ThreadLocal<SimpleDateFormat>() {
@Override
protected SimpleDateFormat initialValue() {
return new SimpleDateFormat("yyyyMMdd");
}
};
public static String formatDate(String date) throws ParseException {
return outDateFormatHolder.get().format(
inDateFormatHolder.get().parse(date));
}
}
这篇关于使用ThreadLocal进行日期转换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!