vote up 3 vote down star

What is the best way to generate a current datestamp in Java?

YYYY-MM-DD:hh-mm-ss

flag

"when not using a database"? What?? Do you normally query a database to retrieve the current time? – John Millikin Sep 19 '08 at 3:04
Do you want a String in that format or some sort of timestamp/date object? – sblundy Sep 19 '08 at 3:04
JohnMilikan: Inefficient tho' 'tis, you can select current date from sysibm.sysdummy1 (that's the DB2 variant, I cna't remember what Oracles dummy tables are called). You're right though, that's not the way I'd do it. – paxdiablo Sep 19 '08 at 3:13
I was trying to say that the data I am writing out is not being timestamped for me when I write it into a table. Also I was not wanting to use and Language packs from external vendors. Thanks very much for your help. I'll also try to be a bit more concise with my questions in future. Cheers. – Troyzor Sep 19 '08 at 5:18

6 Answers

vote up 12 vote down check

Using the standard JDK, you will want to use java.text.SimpleDateFormat

Date myDate = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd:HH-mm-ss");
String myDateString = sdf.format(myDate);

However, if you have the option to use the Apache Commons Lang package, you can use org.apache.commons.lang.time.FastDateFormat

Date myDate = new Date();
FastDateFormat fdf = FastDateFormat.getInstance("yyyy-MM-dd:HH-mm-ss");
String myDateString = fdf.format(myDate);

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:

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd:HH-mm-ss");
Date yourDate = sdf.parse("2008-09-18:22-03-15");
link|flag
vote up 6 vote down
Date d = new Date();
String formatted = new SimpleDateFormat ("yyyy-MM-dd:HH-mm-ss").format (d);
System.out.println (formatted);
link|flag
This example is missing the "new" keyword before SimpleDateFormat("yyyy... – jt Sep 19 '08 at 3:09
@jt thanks, fixed – John Millikin Sep 19 '08 at 3:12
Dislike code sections that don't have the requisite imports. – paxdiablo Sep 19 '08 at 3:27
vote up 0 vote down

SimpleDateFormatter is what you want.

link|flag
vote up 0 vote down

There's also

long timestamp = System.currentTimeMillis()

which is what new Date() (@John Millikin) uses internally. Once you have that, you can format it however you like.

link|flag
vote up 0 vote down

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?

link|flag
vote up 0 vote down
final DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd:hh-mm-ss");

formatter.format(new Date());

The JavaDoc for SimpleDateFormat provides information on date and time pattern strings.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.