My DateFormat is supposed to be correct (24 hour format)
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")
But I have the weirdest 'bug' when I try to parse (sdf.parse(string))
"2010-03-28 02:28:25"
I get:
Sun Mar 28 03:28:25 CEST 2010
It adds an hour for some weird reason. This is also the only date that gives me this kind of behaviour, other hours etc work just fine. It's always the '02' representing the hour that acts weird.
Any thoughts?