vote up 3 vote down star

Is there a way to format a UTC time into any arbitrary string format I want in java? Basically I was thinking of having some class take the timestamp and I pass it is string telling it how I want it formated, and it returns the formatted string for me. Is there a way to do this?

flag

60% accept rate

4 Answers

vote up 9 vote down check

SimpleDateFormat. The javadoc header explains it better than I could.

link|flag
vote up 3 vote down

The DateFormat class or SimpleDateFormat should get you there. For example, http://www.epochconverter.com/ lists the following example to convert a epoch time to human readable timestamp with Java:

String date = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm:ss").format(new java.util.Date (epoch*1000));
link|flag
vote up 3 vote down

Dates are totally broken in Java. Sun screwed is twice (first with java.util.Date and second with java.util.Calendar).

Use Joda Time instead. It's done right. you will never have to look back at JDK Dates.

...You may ask what about database access, say, via Hibernate? Don't worry, Joda time integrates with Hibernate too.

link|flag
vote up 1 vote down

One gotcha to be aware of is that SimpleDateFormat is NOT thread-safe. Do not put it in a static field and use it from multiple threads concurrently.

link|flag

Your Answer

Get an OpenID
or

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