I'm trying to convert this String to Date:
Tue Mar 01 11:46:32 CET 2016
this is the code I have:
DateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy");
Date mTimeStamp = format.parse(getTimeStamp());
it throws a ParseExeption...