I my app i have requirement to format 12 hours time to 24 hours time.What is the method i have to use? For example i have time like 10:30 AM how can i convert to 24 hours time in java
feedback
|
|
Try this:
which produces:
See: http://download.oracle.com/javase/1.5.0/docs/api/java/text/SimpleDateFormat.html | |||
|
feedback
|
|
Assuming that you use SimpleDateFormat implicitly or explicitly, you need to use E.g
instead of
| |||
|
feedback
|
|
Without much context as to what you're trying to do, store the hour and minutes in two separate variables (use the String class methods to break up the time if necessary) and whether it's AM or PM in a boolean or integer. Then, convert the hour as follows:
EDIT: Sorry, misread question. | ||||
|
feedback
|