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!
Hi, how would I convert a string, for example "5/22/2011" into Sunday, May 22? Thanks in advance! |
|||||||
|
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.
|
Try:
|
|||
|
|
|
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 |
|||
|
|