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

I'm using Java's java.util.date class in Scala and want to compare a date object and the current time. I know I can calculate the delta by using getTime():

(new java.util.Date()).getTime() - oldDate.getTime()

However, this just leaves me with a Long representing milliseconds. Is there any simpler, nicer way to get a time delta?

share|improve this question
14  
(4 of 6 answers say use Joda Time :-) – user166390 Dec 30 '10 at 19:58
1  
Why no love for joda time? It's pretty much the best option if you're going to deal with dates in java. – Doctor Jones May 3 '12 at 11:14
Please check my elegant 2 liner solution, without using Joda and giving the result in any TimeUnit at stackoverflow.com/a/10650881/82609 – Sebastien Lorber Mar 12 at 11:19

22 Answers

up vote 41 down vote accepted

The JDK Date API is horribly broken unfortunately. I recommend using Joda Time library.

Joda Time has a concept of time Interval:

Interval interval = new Interval(oldTime, new Instant());

EDIT: By the way, Joda has two concepts: Interval for representing an interval of time between two time instants (represent time between 8am and 10am), and a Duration that represents a length of time without the actual time boundaries (e.g. represent two hours!)

If you only care about time comparisions, most Date implementations (including the JDK one) implements Comparable interface which allows you to use the Comparable.compareTo()

share|improve this answer
2  
Thanks. I guess it's time for me to bite the bullet and start using Joda Time. – pr1001 Oct 12 '09 at 15:54
4  
If you're using Joda Time with Scala, take a look at github.com/jorgeortiz85/scala-time/tree/master – Jorge Ortiz Oct 12 '09 at 17:09
We use JODA exclusively now – andyczerwonka Oct 12 '09 at 20:56
btw -- you mean Comparable.compareTo(), not Comparable.compare(). – Scott Morrison Dec 13 '10 at 4:33
int diffInDays = (int)( (newerDate.getTime() - olderDate.getTime()) 
                 / (1000 * 60 * 60 * 24) )

Note that this works with UTC dates, so the difference may be a day off if you look at local dates. And getting it to work correctly with local dates requires a completely different approach due to daylight savings time.

share|improve this answer
4  
+1 for mentioning the problem with local dates. – sleske Aug 30 '10 at 14:01
This actually does not work correctly in Android. Rounding errors exist. Example 19th to 21st May says 1 day because it casts 1.99 to 1. Use round before casting to int. – Pratik Mandrekar May 1 at 14:51
This is the best and simplest answer. When calculating a difference between two dates, local time zones subtract each other out ... so that the correct answer (as a double) is given simply by ((double) (newer.getTime() - older.getTime()) / (86400.0 * 1000.0); ... as a double, you have the fractional day as well which can easily be converted to HH:MM:ss. – scottb May 16 at 4:53
@scottb: the problem with local dates is that you can have daylight savings time, which means some days have 23 or 25 hours, potentially messing up the result. – Michael Borgwardt May 16 at 9:27

You need to define your problem more clearly. You could just take the number of milliseconds between the two Date objects and divide by the number of milliseconds in 24 hours, for example... but:

  • This won't take time zones into consideration - Date is always in UTC
  • This won't take daylight saving time into consideration (where there can be days which are only 23 hours long, for example)
  • Even within UTC, how many days are there in August 16th 11pm to August 18th 2am? It's only 27 hours, so does that mean one day? Or should it be three days because it covers three dates?
share|improve this answer
I thought java.util. Date was just a tiny wrapper around a time-millis representation, interpreted in the local (default) timezone. Printing out a Date gives me a local timezone representation. Am I confused here? – Adriaan Koster Aug 16 '10 at 9:49
8  
@Adriaan: Yes, you're confused. java.util.Date always represents millis since 1st January 1970 UTC. It's only toString() that converts to the local time zone. – Jon Skeet Aug 16 '10 at 10:18
5  
Oooh! That's sneaky. Thanks for enlightening me. – Adriaan Koster Aug 17 '10 at 12:15
Days d = Days.daysBetween(startDate, endDate);
int days = d.getDays();

http://joda-time.sourceforge.net/faq.html#datediff

share|improve this answer

A slightly simpler alternative:

System.currentTimeMillis() - oldDate.getTime()

As for "nicer": well, what exactly do you need? The problem with representing time durations as a number of hours and days etc. is that it may lead to inaccuracies and wrong expectations due to the complexity of dates (e.g. days can have 23 or 25 hours due to daylight savings time).

share|improve this answer

This seems to me the easiest way, without using any third party library

/**
 * Get a diff between two dates
 * @param date1 the oldest date
 * @param date2 the newest date
 * @param timeUnit the unit in which you want the diff
 * @return the diff value, in the provided unit
 */
public static long getDateDiff(Date date1, Date date2, TimeUnit timeUnit) {
    long diffInMillies = date2.getTime() - date1.getTime();
    return timeUnit.convert(diffInMillies,TimeUnit.MILLISECONDS);
}

And then can you call:

getDateDiff(date1,date2,TimeUnit.MINUTES);

to get the diff of the 2 dates in minutes unit.

share|improve this answer
My exemple does not return the result in milliseconds but in the provided timeUnit param, which is used. The hardcoded TimeUnit.MILLISECONDS is because the diff between the 2 dates is in milliseconds. By the way, you may be using the wrong TimeUnit class because java.util.concurrent.TimeUnit supports days and minutes – Sebastien Lorber Feb 13 at 17:02

Using millisecond approach can cause problems in some locales.

Lets take, for example, the difference between the two dates 03/24/2007 and 03/25/2007 should be 1 day;

However, using the millisecond route, you'll get 0 days, if you run this in the UK!

/** Manual Method - YIELDS INCORRECT RESULTS - DO NOT USE**/  
/* This method is used to find the no of days between the given dates */  
public long calculateDays(Date dateEarly, Date dateLater) {  
   return (dateLater.getTime() - dateEarly.getTime()) / (24 * 60 * 60 * 1000);  
} 

Better way to implement this is to use java.util.Calendar

/** Using Calendar - THE CORRECT WAY**/  
public static long daysBetween(Calendar startDate, Calendar endDate) {  
  Calendar date = (Calendar) startDate.clone();  
  long daysBetween = 0;  
  while (date.before(endDate)) {  
    date.add(Calendar.DAY_OF_MONTH, 1);  
    daysBetween++;  
  }  
  return daysBetween;  
}  
share|improve this answer
10  
Could you please credit the original author of this code and the third sentence, whose blog entry is dated back to 2007? – WChargin Jan 15 '12 at 18:57
Isn't it a bit ineffective? – Gangnus Jan 11 at 9:56

Take a look at Joda Time, which is an improved Date/Time API for Java and should work fine with Scala.

share|improve this answer

If you don't want to use JodaTime or similar, the best solution is probably this:

final static long MILLIS_PER_DAY = 24 * 3600 * 1000;
long msDiff= date1.getTime() - date2.getTime();
long daysDiff = Math.round(msDiff / ((double)MILLIS_PER_DAY));

The number of ms per day is not always the same (because of daylight saving time and leap seconds), but it's very close, and at least deviations due to daylight saving time cancel out over longer periods. Therefore dividing and then rounding will give a correct result (at least as long as the local calendar used does not contain weird time jumps other than DST and leap seconds).

Note that this still assumes that date1 and date2 are set to the same time of day. For different times of day, you'd first have to define what "date difference" means, as pointed out by Jon Skeet.

share|improve this answer

There are many ways you can find the difference between dates & times. One of the simplest ways that I know of would be:

      Calendar calendar1 = Calendar.getInstance();
      Calendar calendar2 = Calendar.getInstance();
      calendar1.set(2012, 04, 02);
      calendar2.set(2012, 04, 04);
      long milsecs1= calendar1.getTimeInMillis();
      long milsecs2 = calendar2.getTimeInMillis();
      long diff = milsecs2 - milsecs1;
      long dsecs = diff / 1000;
      long dminutes = diff / (60 * 1000);
      long dhours = diff / (60 * 60 * 1000);
      long ddays = diff / (24 * 60 * 60 * 1000);

      System.out.println("Your Day Difference="+ddays);

The print statement is just an example - you can format it however you like.

share|improve this answer
3  
@ manoj kumar bardhan : welcome to stack overflow: As you see the question and answers are years old. Your answer should add more to the Question/Answer than the existing ones. – Jayan Apr 3 '12 at 8:03
1  
What about the days that have 23 or 25 hours due to a DST transition? – Joni Jun 15 '12 at 6:23
-1 because you don't take in consideration leap years. – Cyril N. Dec 21 '12 at 7:26

Let me show difference between Joda Interval and Days:

DateTime start = new DateTime(2012, 2, 6, 10, 44, 51, 0);
DateTime end = new DateTime(2012, 2, 6, 11, 39, 47, 1);
Interval interval = new Interval(start, end);
Period period = interval.toPeriod();
System.out.println(period.getYears() + " years, " + period.getMonths() + " months, " + period.getWeeks() + " weeks, " + period.getDays() + " days");
System.out.println(period.getHours() + " hours, " + period.getMinutes() + " minutes, " + period.getSeconds() + " seconds ");
//Result is:
//0 years, 0 months, *1 weeks, 1 days*
//0 hours, 54 minutes, 56 seconds 

//Period can set PeriodType,such as PeriodType.yearMonthDay(),PeriodType.yearDayTime()...
Period p = new Period(start, end, PeriodType.yearMonthDayTime());
System.out.println(p.getYears() + " years, " + p.getMonths() + " months, " + p.getWeeks() + " weeks, " + p.getDays() + "days");
System.out.println(p.getHours() + " hours, " + p.getMinutes() + " minutes, " + p.getSeconds() + " seconds ");
//Result is:
//0 years, 0 months, *0 weeks, 8 days*
//0 hours, 54 minutes, 56 seconds 
share|improve this answer

That's probably the most straightforward way to do it - perhaps it's because I've been coding in Java (with its admittedly clunky date and time libraries) for a while now, but that code looks "simple and nice" to me!

Are you happy with the result being returned in milliseconds, or is part of your question that you would prefer to have it returned in some alternative format?

share|improve this answer

Just call getTime on each, take the difference, and divide by the number of milliseconds in a day.

share|improve this answer
-1 That's wrong unless the Date instances were derived from UTC times. See Jon Skeet's answer. – sleske Aug 30 '10 at 13:24

Subtracting time millis works but you all miss the return type of getType method, which is long, so the examples aren't compile.

share|improve this answer
1  
Hi, welcome to stackoverflow! Please post comments on other answers as a comment, not as a separate answer. – sleske Aug 30 '10 at 13:26

Use GMT time zone to get an instance of the Calendar, set the time using the set method of Calendar class. The GMT timezone has 0 offset (not really important) and daylight saving time flag set to false.

    final Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("GMT"));

    cal.set(Calendar.YEAR, 2011);
    cal.set(Calendar.MONTH, 9);
    cal.set(Calendar.DAY_OF_MONTH, 29);
    cal.set(Calendar.HOUR, 0);
    cal.set(Calendar.MINUTE, 0);
    cal.set(Calendar.SECOND, 0);
    final Date startDate = cal.getTime();

    cal.set(Calendar.YEAR, 2011);
    cal.set(Calendar.MONTH, 12);
    cal.set(Calendar.DAY_OF_MONTH, 21);
    cal.set(Calendar.HOUR, 0);
    cal.set(Calendar.MINUTE, 0);
    cal.set(Calendar.SECOND, 0);
    final Date endDate = cal.getTime();

    System.out.println((endDate.getTime() - startDate.getTime()) % (1000l * 60l * 60l * 24l));
share|improve this answer

Not using the standard API, no. You can roll your own doing something like this:

class Duration {
    private final TimeUnit unit;
    private final long length;
    // ...
}

Or you can use Joda:

DateTime a = ..., b = ...;
Duration d = new Duration(a, b);
share|improve this answer
int daysDiff = (date1.getTime() - date2.getTime()) / MILLIS_PER_DAY;
share|improve this answer
1  
-1 That's wrong unless the Date instances were derived from UTC times. See Jon Skeet's answer. – sleske Aug 30 '10 at 13:25
2  
@sleske you are not right. He has already lost the timezone information by using Date, so this comparison is the best that can be achieved given the circumstances. – Bozho Aug 30 '10 at 13:35
1  
OK, guess we're both right. It's true that it depends on where the Date instance comes from. Still, it's such a common mistake that it should be mentioned. – sleske Aug 30 '10 at 13:57

If you have d1 and d2 as your dates, the best solution is probably the following:

int days1 = d1.getTime()/(60*60*24*1000);//find the number of days since the epoch.
int days2 = d2.getTime()/(60*60*24*1000);

then just say

days2-days1

or whatever

share|improve this answer
-1 That's wrong unless the Date instances were derived from UTC times. See Jon Skeet's answer. – sleske Aug 30 '10 at 13:26
This is incorrect. Internally, Date instances are a thin wrapper around a long that represents POSIX Epoch Time. This is only defined for UTC. Therefore, the value returned by dateObject.getTime() is always in UTC. – scottb May 16 at 4:59

Check example here http://www.roseindia.net/java/beginners/DateDifferent.shtml This example give you difference in days, hours, minutes, secs and milli sec's :).

import java.util.Calendar;
import java.util.Date;

public class DateDifferent {
    public static void main(String[] args) {
        Date date1 = new Date(2009, 01, 10);
        Date date2 = new Date(2009, 07, 01);
        Calendar calendar1 = Calendar.getInstance();
        Calendar calendar2 = Calendar.getInstance();
        calendar1.setTime(date1);
        calendar2.setTime(date2);
        long milliseconds1 = calendar1.getTimeInMillis();
        long milliseconds2 = calendar2.getTimeInMillis();
        long diff = milliseconds2 - milliseconds1;
        long diffSeconds = diff / 1000;
        long diffMinutes = diff / (60 * 1000);
        long diffHours = diff / (60 * 60 * 1000);
        long diffDays = diff / (24 * 60 * 60 * 1000);
        System.out.println("\nThe Date Different Example");
        System.out.println("Time in milliseconds: " + diff + " milliseconds.");
        System.out.println("Time in seconds: " + diffSeconds + " seconds.");
        System.out.println("Time in minutes: " + diffMinutes + " minutes.");
        System.out.println("Time in hours: " + diffHours + " hours.");
        System.out.println("Time in days: " + diffDays + " days.");
    }
}
share|improve this answer
-1 That's wrong unless the Date instances were derived from UTC times. See Jon Skeet's answer. – sleske Aug 30 '10 at 13:25

The following is one solution, as there are numerous ways we can achieve this:

  import java.util.*; 
   int syear = 2000;
   int eyear = 2000;
   int smonth = 2;//Feb
   int emonth = 3;//Mar
   int sday = 27;
   int eday = 1;
   Date startDate = new Date(syear-1900,smonth-1,sday);
   Date endDate = new Date(eyear-1900,emonth-1,eday);
   int difInDays = (int) ((endDate.getTime() - startDate.getTime())/(1000*60*60*24));
share|improve this answer

try this:

int epoch = (int) (new java.text.SimpleDateFormat("MM/dd/yyyy HH:mm:ss").parse("01/01/1970  00:00:00").getTime() / 1000);

you can edit the string in the parse() methods param.

share|improve this answer

@Michael Borgwardt's answer actually does not work correctly in Android. Rounding errors exist. Example 19th to 21st May says 1 day because it casts 1.99 to 1. Use round before casting to int.

Fix

int diffInDays = (int)Math.round(( (newerDate.getTime() - olderDate.getTime()) 
                 / (1000 * 60 * 60 * 24) ))

Note that this works with UTC dates, so the difference may be a day off if you look at local dates. And getting it to work correctly with local dates requires a completely different approach due to daylight savings time.

share|improve this answer
As long as both timestamps are in the same time zone, then the difference between the dates will be the same whether adjusted for the local time zone from UTC or not (the adjustments subtract out). There is a possibility for a DST correction to the result, but if you begin with the assumption that a day is 86400 seconds, it really doesn't matter. – scottb May 16 at 5:03
That's not the point of the answer. Michael Brogwardt's answer results in the wrong result unless you round it up and cast to int in Android's Java SDK. – Pratik Mandrekar May 16 at 11:54

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.