How to format a java.sql Timestamp for displaying ?

What about TimeFormat, how can I convert a Timestamp as a String showing the time?

link|improve this question

70% accept rate
feedback

2 Answers

up vote 3 down vote accepted

This is one way to do it...

new SimpleDateFormat("HH:mm:ss")
    .format(new Date(timestamp.getTime()));

EDIT: Actually it turns out SimpleDateFormat can also format Timestamps so this is even easier:

new SimpleDateFormat("HH:mm:ss")
    .format(new Timestamp(System.currentTimeMillis()));
link|improve this answer
1  
The java.sql.Timestamp extends java.util.Date class so you can format/parse anything that comes in the hierarchy. Regards! – Lucas de Oliveira Apr 29 '11 at 18:36
feedback

Use http://download.oracle.com/javase/6/docs/api/java/text/DateFormat.html to format dates and timestamps.

DateFormat df = DateFormat.getDateInstance();
for (int i = 0; i < myDate.length; ++i) {
    output.println(df.format(myDate[i]) + "; ");
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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