Continuing from this discussion: java program to get the current date without timestamp
What is the most efficient way to get a Date object without the time? Is there any other way than these two?
//method 1
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date dateWithoutTime = sdf.parse(sdf.format(new Date()));
//method 2
Calendar cal = Calendar.getInstance();
cal.set(Calendar.HOUR_OF_DAY, 0);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
dateWithoutTime = cal.getTime();
Update:
1) I knew about Joda, I am just trying to avoid additional library for such a simple (I think) task. But based on the answers so far Joda seems extremely popular, so I might consider it.
2) By efficient I means I want to avoid temporary object String creation as used by method 1, meanwhile method 2 seems like a hack instead of a solution.