Java Date vs Calendar
Date is a simpler class and is mainly there for backward compatibility reasons. If you need to set particular dates or do date arithmetic, use a Calendar. Calendars also handle localization. The previous date manipulation functions of Date have since been deprecated. Personally I tend to use either time in milliseconds as a long (or … Read more