I have the following String
strDate = "Mon Jun 06 18:35:01 CEST 2016"
How can I convert that to a date in order to compare it with a date object?
I know that there is the following
DateFormat format = new SimpleDateFormat("dd-MMM-yy");
Date newDate = (Date) format.parse(date);
but I still I cannnot gen up what is the appropriate format for the previous String.
I appreciate if someone could guide me.
Thanks a lot and BR