SimpleDateFormat中的日期格式不是同步的。推荐(建议)为每个线程创建独立的格式实例。如果多个线程同时访问一个格式,则它必须保持外部同步
JDK原始文档如下:
Synchronization
Date formats are not synchronized. It is recommended to create separate format instances for each thread. If multiple threads access a format concurrently, it must be synchronized externally.
如下内容摘自:http://www.111cn.net/jsp/Java/38190.htm
在java项目中,我们通常会自己写一个dateutil类,处理日期和字符串的转换。如下
public class dateutil{
private static simpledateformat sdf = new simpledateformat("yyyymmdd");
public static formatdatetoyyyymmddstr(date date){
return sdf.format(date);
}
public static formatyyyymmddstrtodate(string str){
return sdf.parse(str);
}
}
然而,由于simpledateformat类不是线程安全的,所以在多线程的环境下,往往会出现意想不到的结果。
有三种方法可以解决以上问题。
1)每次使用时,都创建一个新的simpledateformat实例。如果使用不是很频繁时,可以使用此方法,这样可以降低创建新对象的开销。
2)使用同步:
public class dateutil{
private simpledateformat sdf = new simpledateformat("yyyymmdd");
private date parse(string datestr) throws parseexception{
synchronized(sdf){
return sdf.parse(datestr);
}
}
private string format(date date){
synchronized(sdf){
return sdf.format(datestr);
}
}
}
不过,当线程较多时,当一个线程调用该方法时,其他想要调用此方法的线程就要block,这样的操作也会一定程度上影响性能。
个人最推荐的是第三种方法,那就是借助threadlocal对象每个线程只创建一个实例。
public class dateutil {
private static final string date_format = "yyyymmdd";
@suppresswarnings("rawtypes")
private static threadlocal threadlocal = new threadlocal() {
protected synchronized object initialvalue() {
return new simpledateformat(date_format);
}
};
public static dateformat getdateformat() {
return (dateformat) threadlocal.get();
}
public static date parse(string textdate) throws parseexception {
return getdateformat().parse(textdate);
}
}
分享到:
相关推荐
Java SimpleDateFormat线程安全问题原理详解 Java SimpleDateFormat线程安全问题是Java开发中一个常见的问题。SimpleDateFormat是Java中一个常用的日期时间格式化类,但是它却存在线程安全问题。在多线程环境下,...
目录SimpleDateFormat诡异bug复现SimpleDateFormat诡异bug字符串日期转Date日期(parse)Date日期转String类型(format)SimpleDateFormat出现...事项使用ThreadLocal解决SimpleDateFormat线程安全问题总结...
SimpleDateFormat类的线程安全问题和解决方案 SimpleDateFormat类的线程安全问题 SimpleDateFormat类是Java提供的日期时间转化类,用于将日期和时间类型的数据进行解析和格式化。在Java开发中,SimpleDateFormat类...
在Java编程语言中,`SimpleDateFormat`类是一个广泛使用的日期时间格式化工具,但它的线程安全性是一个常常被开发者忽视的问题。标题指出的"simpleDateFormat是线程不安全的",意味着在多线程环境下,如果多个线程...
本文将深入探讨`SimpleDateFormat`的线程安全问题及其解决方案。 ### 1. 线程安全问题的原因 `SimpleDateFormat`内部维护了一个`Calendar`对象,用于处理日期和时间的解析与格式化。由于`SimpleDateFormat`不是...
### 关于SimpleDateFormat的非线程安全问题及其解决方案 #### 一、问题介绍 在Java开发过程中,`SimpleDateFormat`是被广泛使用的日期格式化工具类。然而,在多线程环境下,`SimpleDateFormat`存在非线程安全的...
ThreadLocal 是一个线程局部变量,每个线程都拥有自己独立的副本,不会互相影响,从而避免线程安全问题。以下是使用 ThreadLocal 的示例: ```java import java.text.SimpleDateFormat; import java.util.Date; ...
SimpleDateFormat类不是线程安全的,这意味着在多线程环境下,如果多个线程同时访问同一个SimpleDateFormat实例,可能会导致各种问题,例如转化的时间不正确、报错、线程被挂死等等。 知识点2: 创建...
本文主要介绍了Java多线程环境下SimpleDateFormat类的安全转换,通过示例代码详细介绍了如何解决SimpleDateFormat类多线程环境下转换错误问题。 1. SimpleDateFormat类的线程安全问题 SimpleDateFormat类是Java中...
它提供了与`SimpleDateFormat`类似的功能,但避免了线程安全问题。 5. **池化`DateFormat`实例**: 尽管`DateFormat`不是线程安全的,但可以通过池化技术减少创建新实例的开销。创建一个`DateFormat`池,线程在...
Java标准库中有一些类,如ArrayList、HashMap和SimpleDateFormat,并未设计为线程安全,因此在多线程环境下直接使用可能导致数据不一致或其他问题。开发者应当了解每个类的线程安全特性,以便做出正确的选择和适当地...
这类类在设计时就没有考虑线程安全,例如`SimpleDateFormat`,在1.4 JDK之前的版本中并未明确指出其线程不安全,导致许多开发者在并发场景中误用,引发错误。 在文档中清晰地记录类的线程安全性是至关重要的。如...
例如,`SimpleDateFormat` 是非线程安全的,因为它内部使用了一个`Calendar`对象,多个线程同时使用一个`SimpleDateFormat`实例进行解析或格式化日期时,可能会出现线程A操作未完成而线程B已经开始的问题,导致数据...
SimpleDateFormat 详解 SimpleDateFormat 是 Java 语言中...然而,在使用时需要注意线程安全和资源消耗问题。通过合理地使用 SimpleDateFormat,我们可以实现日期和时间的高效格式化和解析,提高程序的性能和可读性。
使用线程安全的计数器可以保证在多线程环境中的安全性,避免了线程安全问题的出现。同时,该计数器也可以实现每天从1开始递增,隔天重置为1的功能。 知识点8:源代码的分析 在该示例中,源代码使用了Java语言,使用...
- `SimpleDateFormat`是线程不安全的,如果在多线程环境中使用,需要考虑同步问题。 - 日期和时间的格式化字符串要与实际情况对应,避免出现理解错误。 以上就是关于`SimpleDateFormat`的一些常见用法和注意事项,...
在Java SE中,传统的日期格式化常常涉及到线程安全问题,特别是当多个线程共享同一实例的`SimpleDateFormat`时。这是因为`SimpleDateFormat`不是...理解并正确处理这些线程问题对于编写高效且可靠的并发代码至关重要。
`SimpleDateFormat`不是线程安全的,所以在多线程环境中,要么为每个线程创建单独的实例,要么在每次使用后进行同步。 8. **替代方案**: Java 8引入了`java.time`包,其中的`DateTimeFormatter`类提供了更现代且...
* SimpleDateFormat类不是线程安全的,因为它使用了非线程安全的Calendar对象。 * 解决线程安全问题可以使用ThreadLocal、Lock、Atomic变量等方式。 五、线程池的重要性 * 线程池可以重用线程,减少线程创建和销毁...