Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am getting date string from SAX parsing like this: Wed, 18 Apr 2012 07:55:29 +0000

Now, I want this string as : Apr 18, 2012 01:25 PM

How can I do this?

share|improve this question

2 Answers

up vote 11 down vote accepted
SimpleDateFormat format = new SimpleDateFormat("MMM dd,yyyy  hh:mm a");
String date = format.format(Date.parse("Your date string"));
share|improve this answer
Hi, this works perfectly. Thanks a lot for your help. – Krishna Suthar May 3 '12 at 6:57
I am trying to mark your answer accepted answer. But It is not allowing me...:P – Krishna Suthar May 3 '12 at 6:58
it will allow after 15 mins try after 15 mins.. – V.J. May 3 '12 at 7:00
Yeah. Its Done......... Enjoy.........:) – Krishna Suthar May 3 '12 at 7:08
No thanks, i am waiting for another question from stackoverflow. – V.J. May 3 '12 at 7:10

Use the standard Java DateFormat class.

For example to display the current date and time do the following:

Date date = new Date(location.getTime());
DateFormat dateFormat = android.text.format.DateFormat.getDateFormat(getApplicationContext());
mTimeText.setText("Time: " + dateFormat.format(date));

You can initialise a Date object with your own values, however you should be aware that the constructors have been deprecated and you should really be using a Java Calendar object.

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.