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

Possible Duplicate:
Java string to date conversion

Hi, how would I convert a string, for example "5/22/2011" into Sunday, May 22?

Thanks in advance!

share|improve this question
2  
@Ben, don't rant, just ask to close it as a duplicate. – Thorbjørn Ravn Andersen May 22 '11 at 9:35
Apologies, @Thorbjoern. – Ben Burns May 22 '11 at 15:15

marked as duplicate by Thorbjørn Ravn Andersen, finnw, Jeff Atwood May 22 '11 at 10:49

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 2 down vote accepted

Try:

Date d = new SimpleDateFormat("MM/dd/yyyy").parse("5/22/2011");
String s = new SimpleDateFormat("EEEE, MMMM dd").format(d);
share|improve this answer

Take a look at the class SimpleDateFormat The javadoc give a good description of the parameters

You can use one format to convert into a java Date object and then another to convert back into the second string

share|improve this answer

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