i.e. this code
startDate = new Date(timestampValue.getTime));
gives me :
2012-16-02 05:16:17
You should use a Calendar instead:
Calendar start = Calendar.getInstance(); start.setTimeInMillis( timeStampValue.getTime() );