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?