I'm trying to format a time/date string:

String date = "2011-07-27T06:41:11+00:00";
DateFormat formatter = new SimpleDateFormat("yyyy MM-dd'T'HH:mm:ssz"); //2011-07-27T06:41:11+00:00
Date Sdate = formatter.parse(date.toString());

This is throwing the error

unable to parse newDate.

I don't understand why I'm getting this error, can someone explain?

link|improve this question
3  
And your question is? – Joachim Sauer Jul 27 '11 at 7:51
How about using some semi-colons? – cularis Jul 27 '11 at 7:51
1  
the answer is joda-time.sourceforge.net – NimChimpsky Jul 27 '11 at 7:52
What is the error? – Asad Rasheed Jul 27 '11 at 7:53
String newDate = "2011-07-27T06:41:11+00:00"; DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssz");//2011-07-27T06:41:11+00:00 Date Sdate = formatter.parse(newDate.toString()); This is throwing unable to parse newDate. Please suggest.. – Cintu Jul 27 '11 at 7:54
show 2 more comments
feedback

3 Answers

up vote 3 down vote accepted

The issue is with the TimeZone information. The ':' is an illegal character in the timezone string. See http://download.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html#rfc822timezone and http://download.oracle.com/javase/1.4.2/docs/api/java/text/SimpleDateFormat.html#timezone

The following string is parseable

String date = "2011-07-27T06:41:11+0000";

Remove the ':' and your code will work.

link|improve this answer
no i have to parse that date... We are getting this date value from the feed – Cintu Jul 27 '11 at 8:05
You will need to use a string replace to remove the extraneous ':' before passing to the formatter. – bstick12 Jul 27 '11 at 8:08
@Cintu : You can use a regex to format the date that fits your SimpleDateFormat pattern. – chepseskaf Jul 27 '11 at 8:09
no its is not working – Cintu Jul 27 '11 at 8:10
1  
@Cintu: then you're doing it wrong. And "not working" is about the least amount of information that you could possible give about any given problem. – Joachim Sauer Jul 27 '11 at 8:16
show 3 more comments
feedback

SimpleDateFormat do not accept all ISO8601 date-time formats .

You can use DatatypeConverter.parseDateTime in JAXB .

something like

String date = "2011-07-27T06:41:11+00:00";
Date Sdate = DatatypeConverter.parseDateTime(date).getTime();

and please do try to follow the conventions (variable names should start with a lower case)

link|improve this answer
feedback

Try JodaTime. Java's built-in Date handling is not that good.

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.