I'm stuck parsing this String into a date.
"Thu Jun 09 2016 00:00:00 GMT+0200 (CEST)"
I made it that far: I can parse this string: "Thu Jun 09 2016 00:00:00 (CEST)"
by using this formatter:
DateFormat formatter2 = new SimpleDateFormat("EEE MMM dd yyyy HH:mm:ss (z)"
But I'm stuck with parsing the entire above String. Can anyone help?