Java Date Between daysBetween(Date d1, Date d2)

Here you can find the source of daysBetween(Date d1, Date d2)

Description

days Between

License

Apache License

Declaration

public static long daysBetween(Date d1, Date d2) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright 2014 Likya Teknoloji//from   ww w.ja v a2s  . c  om
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 ******************************************************************************/

import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {
    public static long daysBetween(Date d1, Date d2) {
        //return ((d2.getTime() - d1.getTime() + ONE_HOUR) / (ONE_HOUR * 24));
        return ((d2.getTime() - d1.getTime() + (60 * 60 * 1000L)) / (60 * 60 * 1000L * 24));
    }

    public static String getTime(Date executionTime) {
        SimpleDateFormat formatter = new SimpleDateFormat("HH:mm:ss"); //$NON-NLS-1$
        return formatter.format(executionTime);
    }
}

Related

  1. betweenInDay(Date date, Date start, Date end)
  2. betweenStartDateAndEndDate(Date startDate, Date endDate)
  3. betweenStrict(Date kezdet, Date datum, Date veg)
  4. betweenTwoDates(Date date1, Date date2)
  5. daysBetween(Date d1)
  6. daysBetween(Date date1, Date date2)
  7. DaysBetween(Date date1, Date date2)
  8. daysBetween(Date smdate, Date bdate)
  9. daysBetween(Date smdate, Date bdate)