Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to get the field AM/PM in date object. How can i get it?

This is my code.

String startTime ="01:05 PM";
 SimpleDateFormat sdf = new SimpleDateFormat("hh:mm aa");

 Date st = sdf.parse(startTime);
share|improve this question

2 Answers

up vote 5 down vote accepted

You could use a Calendar.

Calendar cal = Calendar.getInstance();
cal.setTime(st);
if (cal.get(Calendar.AM_PM) == Calendar.PM) {
  ...
}

Make sure you don't have a time zone mismatch when you do this.

share|improve this answer
Thanks for the reply. – Srinivasan Feb 24 '10 at 5:58

Calendar is probably best, but you could use DateFormat, too:

String amPm = new SimpleDateFormat("aa").format(time);

The TimeZone caveat also applies here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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