Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
Efficient? Do you need more efficiency than what's provided e.g., by method1? – Johan Sjöberg Feb 19 '11 at 10:22
What do you mean by "efficient"? A date is basically a typed long, you can't really do this in less memory than that. If you mean "convenient", JODA time is the way to go. – millimoose Feb 19 '11 at 10:46
+1 Exactly the question I had. – jmendeth Jun 3 '11 at 10:51
I like method 2. Create a static method in an utility class and just use it. I've been this approach for years. – Wilson Freitas Jan 12 '12 at 14:57
Method 2 is not that short. You also have to catch the java.text.ParseException or throw it away. – Roberto Linares Feb 13 at 22:19

9 Answers

up vote 17 down vote accepted

Do you absolutely have to use java.util.Date? I would thoroughly recommend that you use Joda Time instead. In particular, while Date and Calendar always represent a particular instant in time, with no such concept as "just a date", Joda Time does have a type representing this (LocalDate). Your code will be much clearer if you're able to use types which represent what you're actually trying to do.

There are many, many other reasons to use Joda Time instead of the built-in types - it's generally a far better API. You can always convert to/from a java.util.Date at the boundaries of your own code if you need to, e.g. for database interaction.

share|improve this answer

It does not make sense to talk about a date without a timestamp with regards to the Date routines in the standard java runtime, as it essentially maps down to a specific millisecond and not a date. Said millisecond intrinsically has a time of day attached to it.

If you want to work with dates instead of milliseconds, you need to use another library. The JODA library is well suited for dealing with this.

share|improve this answer
2  
Note: Those approaches saying "the date at midnight" does not handle daylight savings time and multiple timezones well. – Thorbjørn Ravn Andersen Feb 19 '11 at 10:38

Here is what I used to get today's date with time set to 00:00:00:

formatter = new SimpleDateFormat("dd/MM/yyyy");

Date today = new Date();

Date todayWithZeroTime =formatter.parse(formatter.format(today));
share|improve this answer
1  
In what way is this different from the already proposed "method 1" in the original question? – Chris Mar 16 at 11:39

Try this,

    import java.util.Date;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;

    public class GetCurrentDateTime {
      public static void main(String[] args) {

           DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd");
           //get current date time with Date()
           Date date = new Date();
           System.out.println(dateFormat.format(date));

      }
    }
share|improve this answer
A great Answer. – Kalanamith Jan 17 at 10:13
1  
This looks a lot like "method 1" in the original question. – Chris Mar 16 at 11:42

The most straightforward way:

long millisInDay = 60 * 60 * 24 * 1000;
long currentTime = new Date().getTime();
long dateOnly = (currentTime / millisInDay) * millisInDay;
Date clearDate = new Date(dateOnly);
share|improve this answer
2  
For me, this is currently: "Sat Feb 19 01:00:00 CET 2011". If you want to use that, then only with UTC. – Chris Lercher Feb 19 '11 at 10:53
1  
Isn't line 3 long dateOnly = (currentTime / millisInDay) * millisInDay; the same as writing long dateOnly = currentTime; ? – Chris Mar 16 at 11:46

Well, as far as I know there is no easier way to achieve this if you only use the standard JDK.

You can, of course, put that logic in method2 into a static function in a helper class, like done here in the toBeginningOfTheDay-method: https://github.com/cosmocode/cosmocode-commons/blob/master/src/main/java/de/cosmocode/commons/Calendars.java

Then you can shorten the second method to: Calendar cal = Calendar.getInstance(); Calendars.toBeginningOfTheDay(cal); dateWithoutTime = cal.getTime();

Or, if you really need the current day in this format so often, then you can just wrap it up in another static helper method, thereby making it a one-liner.

share|improve this answer

The standard answer to these questions is to use Joda Time. The API is better and if you're using the formatters and parsers you can avoid the non-intuitive lack of thread safety of SimpleDateFormat.

Using Joda means you can simply do:

LocalDate d = new LocalDate();
share|improve this answer

Check out Veyder-time. It is a simple and efficient alternative to both java.util and Joda-time. It has an intuitive API and classes that represent dates alone, without timestamps.

share|improve this answer

If you need the date part just for echoing purpose, then

Date d = new Date(); 
String dateWithoutTime = d.toString().substring(0, 10);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.