티스토리 뷰

IT/Java

FastDateFormat 쓰자

underbell 2014. 7. 21. 15:02
simpleDateFormat 쓰레드 락 걸릴 때 있다
Calendar 역시 static은 쓰레드 락 걸린다
FastDateFormat 쓰자
 
Format sdf = FastDateFormat.getInstance("yyyyMMddHHmmss", Locale.getDefault());
String currDate = sdf.format(new Date());
log.debug("yyyyMMddHHmmss : " + currDate);


http://stackoverflow.com/questions/6840803/simpledateformat-thread-safety

http://devday.tistory.com/entry/SimpleDateFormat%EA%B3%BC-Thread-Safety


댓글