What is the date format to get only hours in 12-hours format from this time

 Thu Oct 20 13:12:00 GMT+02:00 2011

edit:

using this code

Date eventDate = tempAppointments.get(i).mStartDate
System.out.println(eventDate.toString());

// date pattern
DateFormat df = new SimpleDateFormat("hh:'00' a");//output : Wed Nov 09 11:00:00 GMT+02:00 2011


// get the start date with new format (pattern) 
String hours = df.format(tempAppointments.get(i).mStartDate.getDay());
System.out.print(hours);//output: 02:00 AM

return hours as

02:00 AM

but for the given time. it must be 02:00 PM . why ?

link|improve this question

60% accept rate
5  
It would be a lot easier to diagnose the problem if you could provide complete, running code that demonstrates the problem - see sscce.org – Michael Borgwardt Nov 19 '11 at 23:31
feedback

1 Answer

up vote 0 down vote accepted

I'm not sure why you are passing date.getDay() (which is deprecated, by the way) into the formatter if you want the hour part.

Try this:-

Date date = new Date();
System.out.println("Date: " + date);

DateFormat df = new SimpleDateFormat("hh:'00' a");
String hour = df.format(date);
System.out.println("Hour: " + hour);

The output:

Date: Sat Nov 19 17:57:05 CST 2011
Hour: 05:00 PM
link|improve this answer
the question is why does it even compile? i don't see any DateFormat#format(int) so what gives? – soulcheck Nov 20 '11 at 0:02
You are formatting the date object, not int. See the API here: download.oracle.com/javase/1,5.0/docs/api/java/text/… – limc Nov 20 '11 at 0:05
yes, the problem is that Date#getDay() returns int (in the original code that is) – soulcheck Nov 20 '11 at 0:09
even df.format(1) compiles. Is there some implicit casting from int to Date? – soulcheck Nov 20 '11 at 0:15
feedback

Your Answer

 
or
required, but never shown

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