JAVA - Simple DateFormat 의 스 레 드 가 안전 하지 않 습 니 다.
2546 단어 자바
package cn.qiweiwei.concurrentdate;
import java.text.SimpleDateFormat;
import java.util.Date;
public class ConcurrentDateTest {
private static final SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
private static String date1String = "2010-03-04";
//private static String date2String = "2013-04-05";
public static void main(String[] args) {
for (int i = 0; i < 10; i++) {
new Thread(new Runnable() {
@Override
public void run() {
try {
Date date1 = simpleDateFormat.parse(date1String);
//String date1S = simpleDateFormat.format(date1);
System.out.println(Thread.currentThread().getName() + ":" +date1);
} catch (Exception e) {
System.out.println("Thread error");
//throw new RuntimeException("parse failed", e);
}
}
}).start();
}
}
}
출력 결과:
Thread error
Thread error
Thread-1:Sat Mar 04 00:00:00 CST 2220
Thread-9:Thu Mar 04 00:00:00 CST 2010
Thread-6:Thu Mar 04 00:00:00 CST 2010
Thread-4:Thu Mar 04 00:00:00 CST 2010
Thread-3:Thu Mar 04 00:00:00 CST 2010
Thread-7:Thu Mar 04 00:00:00 CST 2010
Thread-8:Thu Mar 04 00:00:00 CST 2010
Thread-5:Thu Mar 04 00:00:00 CST 2010
날짜 가 틀 렸 거나 이상 이 생 겼 다.
해결 방법:
1. 잠 금 추가: 스 레 드 내: synchronized (simpleDateFormat) {. do parse and format.}
2. 스 레 드 부분 변 수 를 정의 합 니 다: 변 수 는 같 지만 모든 스 레 드 는 같은 초기 값 을 사용 합 니 다. 액세스 데 이 터 는 이 스 레 드 에서 만 유효 합 니 다 (내부 에서 하나의 Map (실제 내부 클래스 ThreadLocalMap) 을 통 해 데 이 터 를 액세스 하고 액세스 데 이 터 는 같은 스 레 드 에서 만 유효 합 니 다)
private static final ThreadLocal df = new ThreadLocal(){
@Override
protected DateFormat initialValue(){
return new SimpleDateFormat("yyyy-MM-dd");
}
};
사용 방법:
new Thread(new Runnable() {
@Override
public void run() {
try {
Date date1 = df.get().parse(date1String);
System.out.println(Thread.currentThread().getName() + ":" +date1);
} catch (Exception e) {
System.out.println("Thread error");
}
}
}).start();
3. jdk 8 추천 방법:
Date 대신 인 스 턴 트, Calendar 대신 LocalDateTime, Simple DateFormatter 를 사용 하여 공식 적 으로 설명 합 니 다: simple beautiful strongimmutable thread - safe.
링크 와 같은 변수 변환:
https://www.cnblogs.com/niceboat/p/7027394.html
https://blog.csdn.net/u013604031/article/details/49812941
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.