I get the following error:
´java.text.ParseException: Unparseable date: "Aug 31 09:53:19 2011"´ with this format: new SimpleDateFormat("MMM dd HH:mm:ss yyyy");
Does anyone see the problem?
|
I get the following error:
´java.text.ParseException: Unparseable date: "Aug 31 09:53:19 2011"´ with this format: Does anyone see the problem?
| |||||
feedback
|
|
Make sure you're using the correct locale. (The This works fine on my machine:
(While using | |||||
feedback
|
|
The format itself is OK for the input you gave. But you might get this error if your default locale is set to something where "Aug" is not a valid abbreviation of a month name. Try using for example to
| |||
|
feedback
|