In my app, i have requirement to format 12 hours time to 24 hours time.What is the method i have to use?
For example, time like 10:30 AM. How can i convert to 24 hours time in java?
In my app, i have requirement to format 12 hours time to 24 hours time.What is the method i have to use?
For example, time like 10:30 AM. How can i convert to 24 hours time in java?
This is the extract of code that I have done.
provided by Bart Kiers answer should be replaced with somethig like
Assuming that you use SimpleDateFormat implicitly or explicitly, you need to use
H
instead ofh
in the format string.E.g
HH:mm:ss
instead of
hh:mm:ss