I have a string representation of a date that I need to create an object from. I've looked through Date and Calendar API but haven't found anything that can do this other than creating my own ugly parse method. I know there must be a way, does anyone know of a solution?
|
|
In brief...
See http://java.sun.com/j2se/1.5.0/docs/api/java/text/SimpleDateFormat.html for more. |
||
|
|
|
|
DateFormat.parse(String) |
||
|
|
|
|
The DateFormat class has a parse method. http://java.sun.com/j2se/1.4.2/docs/api/java/text/DateFormat.html |
|||
|
|
|
|
The highly regarded Joda Time library is also worth a look. This is basis for the new date and time api that is pencilled in for Java 7. The design is neat, intuitive, well documented and avoids a lot of the clumsiness of the original Joda's |
|||
|
|
