| Author |
Solution for Unparsable Date Exception
|
Steve Dyke
Ranch Hand
Joined: Nov 16, 2004
Posts: 1261
|
|
the parameter I am sending is a string 09/01/2009. The following code returns an Unparsable Date "09/01/2009". Please help resolve this.
|
 |
Henry Wong
author
Sheriff
Joined: Sep 28, 2004
Posts: 16815
|
|
Your date parser is configured to take a date of the format "MMM-yy" or the month, followed by a dash, followed by two digits that represents the year. This is complete different, in term of format, to what you are actually sending to it.
Henry
|
Books: Java Threads, 3rd Edition, Jini in a Nutshell, and Java Gems (contributor)
|
 |
 |
|
|
subject: Solution for Unparsable Date Exception
|
|
|