I want to parse my date like "yyyy-mm-dd-hh:mm:ss". And I want to get a long back.

My code is:

Date date = new SimpleDateFormat("yyyy-MM-dd-hh:mm:ss").parse(exampleDate);
long longDate = date.getTime();

This is working if hh > 12. But if not I'll get for 12:00 o'clock an 00:00. What's wrong?

link|improve this question

71% accept rate
What programming language are we talking about? – Ramhound Feb 23 at 13:57
feedback

2 Answers

up vote 2 down vote accepted

use HH for 24 hr clock

SimpleDateFormat("yyyy-MM-dd-HH:mm:ss")
link|improve this answer
Thanks, that's it! – somehut Feb 23 at 13:46
feedback

hh should be HH if you use 24 hours format.

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.