I know org.apache.commons.lang.time.DateFormatUtils.format()
is thread safe, but whats the different between lang3's DateFormatUtils.format()
and lang's DateFormatUtils.format()
, is it thread safe?
Asked
Active
Viewed 363 times
2

Kaustubh Khare
- 3,280
- 2
- 32
- 48

JIANG
- 23
- 3
-
Does this answer your question? ["Java DateFormat is not threadsafe" what does this leads to?](https://stackoverflow.com/questions/4021151/java-dateformat-is-not-threadsafe-what-does-this-leads-to) – AliSh Jan 14 '20 at 04:19
1 Answers
2
Yes it is thread safe DateFormatUtils
Formatting is performed using the thread-safe FastDateFormat class.

Ryuzaki L
- 37,302
- 12
- 68
- 98