Hi,
I want to convert String to Date in different Format.
For example,
I am getting from user,
String fromDate = "19/05/2009"; (dd/MM/yyyy)
I want to convert this fromDate as a Date object of "yyyy-MM-dd" format
How can I do this?
Thanks in Advance
|
|
|||
|
|
|
Check the javadocs for java.text.SimpleDateFormat It describes everything you need. |
||
|
|
|
|
Use the SimpleDateFormat-class:
Usage:
For efficiency, you would want to store your formatters in a hashmap. The hashmap is a static member of your util class.
|
||||||||||
|
|
|
Take a look at
|
||
|
|
|
|
While SimpleDateFormat will indeed work for your needs, additionally you might want to check out Joda Time, which is apparently the basis for the redone Date library in Java 7. While I haven't used it a lot, I've heard nothing but good things about it and if your manipulating Dates extensively in your projects it would probably be worth looking into. |
||
|