I'm having problem parsing the Date from an input string that is of the following format:

String input = "Fri Jul 15 12:00:00 GMT+300 2011";
String dateFormat  = "EEE MMM d HH:mm:ss z yyyy";
Date date = new SimpleDateFormat(dateFormat).parse(input);

An exception is thrown:

java.text.ParseException: Unparseable date: "Fri Jul 15 12:00:00 GMT+300 2011"
    at java.text.DateFormat.parse(DateFormat.java:337)

I bet it has got something to do with the GMT string. I think I've tried it with z, zzz, zZ, and zzzZ. Any thoughts? Is the input GMT+300 even a standard, valid input format?

link|improve this question

I read the documentation, but couldn't get it parsed. – Kimi Jul 15 '11 at 9:49
3  
From reading the documentation, it looks as if GMT+300 isn't valid, but GMT+3:00 would be. Is there any way you could manipulate the timezone portion of your input string first so that it's actually valid? – Anthony Grist Jul 15 '11 at 9:54
GMT+300 is not valid format, +0300 is – Vlad Jul 15 '11 at 9:59
Joda Time can deal with this. – wjans Jul 15 '11 at 10:01
Well, the problem is that the String is coming directly from our UI framework's built-in form component DateItem (SmartGWT). Maybe I'll inform the developers and wait for it to get fixed. – Kimi Jul 15 '11 at 10:05
show 2 more comments
feedback

1 Answer

up vote 0 down vote accepted

The problem was that GMT+300 isn't valid GMT string according to the Java Timezone specification.

Solution: Manipulating the timezone portion of input string. GMT+300 ==> GMT+3:00

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.