i wandted to conver a long value to formatted time. The code i used:
long startTimeInSeconds = 60*60*1000*sH + 60*1000*sM + sS*1000 + sL;
SimpleDateFormat dateFormat = new SimpleDateFormat("hh:mm:ss,SSS");
Date start= new Date(SU.startTime);
StartTime = dateFormat.format(start);
Here sH sM .. are the hours minutes .. from a string, the format was this:"hh:mm:ss,SSS".
SU.startTime is the startTimeInSeconds.
StartTime is a String.
When i display the StartTime it not gives me the correct time.
For example when the startTimeInSeconds is 2510823, it has to be 0:41:50,823 but i get 1:41:50,823.
I dont know what i did wrong, if i display the hours minutes... like this:
int hours = (int) (SU.startTime / (60 * 60 * 1000));
Then i get the correct values.
Does anyone know whats the solution for this problem??
hh, which gives the 12 hour clock. If you want the 24 hour clock (which will give 00) you needHHrather thanhh. (I've edited this into my answer.) – Jon Skeet Jan 25 at 11:05