Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Follow the simple a example

java.sql.Time t = new Time(1000);
System.out.println("Time t =" + t);

This gives the following output:

Time t = 01:00:01

While I would expect:

Time t = 00:00:01

Could someone tell me how to get rid of the hours portion?

share|improve this question

2 Answers

up vote 2 down vote accepted

The Time object is normalized, i.e. the timezone of your JVM is taken into account.

Btw, instead of toString() you might want to use DateFormat#format(Date) and set the time zone on the DateFormat instance.

share|improve this answer

I think you should consider your current TimeZone and check the API of the constructor

http://download.oracle.com/javase/7/docs/api/java/sql/Time.html#Time(long)

I expect you are living somewhere in Europe ;-)

share|improve this answer
1  
When linking JavaDocs please try to use the current version. Changed it from 1.4.2 to 7 for you :) – Thomas Jul 14 '11 at 14:39
Thanks Thomas!! – powerMicha Jul 14 '11 at 14:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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