I am parsing XML file. In this file there is one tag containing date string "2008-11-10T05:51:33Z" and I want convert this string in to java.util.Date object.
How can this be done?
|
|
Use java.text.DateFormat - or more likely, SimpleDateFormat. Alternatively, go for Joda Time with its infinitely better API. Be careful with the Java built-in APIs - DateFormats aren't thread-safe. (They are in Joda Time, which uses immutable types almost everywhere.) An (untested - should be fine except for possibly the timezone bit) example for the Joda Time API:
|
|||
|
You can also use the TryParse function of DateTime class, look in the documentation. |
|||
|
|