Here is what I am doing :
SimpleDateFormat parserSDF = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzzz yyyy", Locale.ENGLISH);
Date dateFormat = parserSDF.parse("Mon Nov 07 00:00:00 CEST 2016");
dateFormat
should then contain Mon Nov 07 00:00:00 CET 2016, but here is what I get when logging it :
Sun Nov 06 23:00:00 CET 2016
Why do I get this hour of difference?
Thank you.