Hi,
I'm trying to parse the datetime value on the server side using java's DateFormat.parse() method, but getting a parseException
The date is in the format Thu Sep 16 12:21:00 GMT+100 2010, but the exception says:
java.text.ParseException: Unparseable date: "Thu Sep 16 12:21:00 GMT+100 2010"
Is there any way to parse this date correctly?
I'm trying to parse the datetime value on the server side using java's DateFormat.parse() method, but getting a parseException
The date is in the format Thu Sep 16 12:21:00 GMT+100 2010, but the exception says:
java.text.ParseException: Unparseable date: "Thu Sep 16 12:21:00 GMT+100 2010"
Is there any way to parse this date correctly?
Comment