Using Android Studio
I'm retrieving a date from facebook, it comes as a string "2015-11-21T17:49:49+0000"
I wish to turn it into a date with format "EEE MMM dd HH:mm:ss Z yyyy" but of course I need to first change it into a Date object
Attempting to do that, I've attempted to parse it into "EEE-MM-dd'T'HH:mm:ssZyyyy" but this causes my program to crash. "ParseException: Unparseable date: "2015-11-21T17:49:49+0000" (at offset 0)"
Could it be the T symbol coming with the date? Or am I using an incorrect format?