I'm looking for a thread-safe replacement for SimpleDateFormat. parseObject on good old FastDateFormat isn't implemented and just throws an error. Any ideas? I don't need anything fancy, just thread-safety and the ability to handle this pattern: "yyyy-MM-dd".
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
If at all possible, use Joda Time. Its date/time parsers are thread-safe, and it's generally a much nicer API than You can use just its parsers and then convert the return values to |
|||
|
|
|
As outlined in this post you can either synchronise, use thread locals or Joda-Time. For example, using ThreadLocals:
|
|||||
|
|
Found a solution.
|
|||
|
|
Why not to put the call of |
|||
|
|
