I have a String as
strikedate="2011-11-19T00:00:00.000-05:00"
I need to put this into a java.util.Date Could anybody please tell me how to convert this String to Date
|
|
|
Sure - use
EDIT: Eek - it's not quite that simple, due to your time zone format. The above will work without the colon. You may need to use Joda Time to parse the version with the colon. Checking that now... EDIT: Yes, with Joda Time you can use:
Joda Time is also a much nicer date/time API to start with - I'd strongly encourage you to use it if you can. |
||||
|
|
|
Use a SimpleDateFormat (namely, its inherited |
|||
|
|
|
Try something like:
|
|||
|
|