How can I convert a String object to a Date object?
I think I need to do something like this:
Date d=(some conversion ) "String "
Any help would be greatly appreciated.
|
For details refer to: SimpleDateFormat documentation |
||||
|
Date-to-String conversion is a relatively complex parsing operation, not something you can do with a simple cast as you are trying. You'll have to use a DateFormat. It can be as simple as:
But this changes the expected date format depending on the locale settings of the machine it's running on. If you have a specific date format, you can use SimpleDateFormat:
Note that the parse method will always expect one specific format, and will not try to guess what could be meant if it receives a different format. |
|||
|
|
|
See Sun's Java tutorial and the class SimpleDateFormat |
|||
|
|
|
Use a
|
|||
|
|
|
java.text.SimpleDateFormat that extends java.text.DateFormat abstract class.
|
|||
|
|
|
use
|
|||||
|