Link to home
Start Free TrialLog in
Avatar of phuzzy
phuzzy

asked on

Days between Dates

Given two dates (DD/MM/YYYY) can anyone supply me with code that will return the number of days between the two dates.

Also a reverse function is needed given a date and the number of days can you produce code that will return a date

Date is a record of Day and Month and Year that are all integer subtypes.

Days is an integer
Avatar of Sasha_Mapa
Sasha_Mapa

I'll assume day,month and year are integers:

1.

import java.util.Date;

public class Dates{

   public static long getDaysBetween(int d1, int m1, int y1, int d2, int m2, int y2){

       long secDiff = Date.UTC(y2-1900,m2,d2,0,0,0)-Date.UTC(y1-1900,m1,d1,0,0,0);
       return Math.abs(secDiff/(60*60*24));
    }


    public static Date getDateAfterDays(int d1, int m1, int y1, int days){

       return new Date(Date.UTC(y1-1900,m1,d1)+days*24*60*60);
    }

}


I have to say though that the question looks like a homework question, but in that case, I think my answer doesn't answer it :-)
Avatar of phuzzy

ASKER

The Story...

2nd Year Student University Of Ulster (20 years old).

Assignment : Develop a room booking system for the Faculty Of Informatics. in ADA!!!

Problem :

This is not exactly a HOMEWORK question.  The teamwork assignment is quickly approaching 3000 lines of code and one of our team members is in hospital with meningitis.  Two weeks past the deadline i have decided to take on one of his packages.  I have 4 other HUGE assignments to hand in a this assignment is beginig to annoy me.  My head is not right and i cant for the life of me work out how to do this.  

I just need a little help on this very small bit of code.  The course director know all abpout this and understands due to the ilness in the team.

As i said before the assigment is in Ada but i know how to read and write in Java so conversion to ADA will be easy, provided no in-built packages of Java are used :-)

Thank You
The java.util.Date.getTime() method returns the number of miliseconds since 1970. So to get the difference in seconds between two Dates do something like this:

class Test {
      public static void main( String args[] ) {
            java.util.Date d1, d2;
            java.text.SimpleDateFormat sdf;

            try {
                  sdf = new java.text.SimpleDateFormat();
                  sdf.applyPattern("dd-MM-yyyy");
                  d1 = sdf.parse("1-1-2000");
                  d2 = sdf.parse("1-1-2001");
                  int daysBetween = (int)((d2.getTime() - d1.getTime()) / (1000L * 3600 * 24));
                  System.out.println(daysBetween);
            } catch( java.text.ParseException e ) {
                  // Handle Date Parsing Exception here...
                  System.out.println("Error in Parsing date...");
            }
      }
}

Hope that this helps you...
Avatar of phuzzy

ASKER

As i said in my last comment the code is actua;lly going to be converted to ADA95 and therefore java classes that perform the functions cannot be used.
Do you need that considering that some years have 366 days and that sometimes february has 29 days and that some months have 30 days and others 31?
This sounds like a very easy problem...I've written such stuff when I was in 7th grade as homework assignment...
ASKER CERTIFIED SOLUTION
Avatar of azawawi
azawawi

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of phuzzy

ASKER

Sarcasim is not appreciated Sasha.  If youre so clever then why didn't you answer the question of the top of your head??????

Don't try to be clever, be clever (or sumfin)

Anyway thanks alot azawawi for the answer
Umm, that wasn't sarcasm, we really did solve such problems in school...
I didn't give the answer right away because I was lazy to calculate all the formulas azawawi had and wanted to know first whether you needed it to consider special cases...
Avatar of phuzzy

ASKER

Sorry I was in a mood and read your response wrongly.

I must apologise but i people agree with me that i does look like a sarcastic response.

Maybe it's my British humour or sumfin

Again Sorry.