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

link|improve this question

58% accept rate
1  
Do you just have a time, or also a date? – Jon Skeet Jun 30 '11 at 7:56
feedback

3 Answers

up vote 3 down vote accepted

Try this:

import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
   public static void main(String [] args) throws Exception {
       SimpleDateFormat displayFormat = new SimpleDateFormat("HH:mm");
       SimpleDateFormat parseFormat = new SimpleDateFormat("hh:mm a");
       Date date = parseFormat.parse("10:30 PM");
       System.out.println(parseFormat.format(date) + " = " + displayFormat.format(date));
   }
}

which produces:

10:30 PM = 22:30

See: http://download.oracle.com/javase/1.5.0/docs/api/java/text/SimpleDateFormat.html

link|improve this answer
feedback

Assuming that you use SimpleDateFormat implicitly or explicitly, you need to use H instead of h in the format string.

E.g

HH:mm:ss

instead of

hh:mm:ss

link|improve this answer
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:

if(pm)
   hour = 12 + hour;
else if(hour == 12 && am)
   hour == 0;

EDIT: Sorry, misread question.

link|improve this answer
The whole point is that hour is never greater than 12 – Patrick Jun 30 '11 at 8:01
feedback

Your Answer

 
or
required, but never shown

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