I'm attempting to parse the following string into a date object: 9/14/2012 9:50:56 PM
I'm using the following format:
DateFormat formatter = new SimpleDateFormat("MM/dd/yy HH:mm:ss a");
formatter.setTimeZone(TimeZone.getTimeZone("America/New_York"));
But I keep getting the following date: Fri Sep 14 06:50:56 PDT 2012
I seem to be off by 12 hours (after accounting for the time change). However when I parse the following string: 9/14/2012 1:00:00 AM - I get the right date object: Thu Sep 13 22:00:00 PDT 2012
What I am doing wrong?