What is the best way to generate a current datestamp in Java?
YYYY-MM-DD:hh-mm-ss
|
|
|||||||||
|
|
|
Using the standard JDK, you will want to use java.text.SimpleDateFormat
However, if you have the option to use the Apache Commons Lang package, you can use org.apache.commons.lang.time.FastDateFormat
FastDateFormat has the benefit of being thread safe, so you can use a single instance throughout your application. It is strictly for formatting dates and does not support parsing like SimpleDateFormat does in the following example:
|
||
|
|
|
|
|
||||||
|
|
|
SimpleDateFormatter is what you want. |
||
|
|
|
|
There's also
which is what |
||
|
|
|
|
I think that you need to be a little more clear in your question. In particular, what data type do you want at the end of the process? A String? |
||
|
|
|
|
The JavaDoc for SimpleDateFormat provides information on date and time pattern strings. |
||
|
|