I have a String
containing the result of toString()
called on an instance of java.util.Date
. How can I parse this value back to a Date
object?
The Java docs say that toString()
converts this Date
object to a String
of the form:
dow mon dd hh:mm:ss zzz yyyy
but of course there is no such format tag as "dow"
or "mon"
.
Could someone please help me with this problem. Please note that unfortunately the toString()
call is in a piece of code out of my control.