Java Date Difference getTimeDifferenceInSeconds(Date d, Date d2)

Here you can find the source of getTimeDifferenceInSeconds(Date d, Date d2)

Description

get Time Difference In Seconds

License

Open Source License

Declaration

public static double getTimeDifferenceInSeconds(Date d, Date d2) 

Method Source Code

//package com.java2s;
/*//from  www .ja  va  2s. c om
 * Copyright (c) 2014 Brockmann Consult GmbH (info@brockmann-consult.de)
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 3 of the License, or (at your option)
 * any later version.
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, see http://www.gnu.org/licenses/
 */

import java.util.*;

public class Main {
    public static double getTimeDifferenceInSeconds(Date d, Date d2) {
        return Math.abs(d.getTime() - d2.getTime()) / 1000.0;
    }
}

Related

  1. getDiffMon(Date dt, int idiff)
  2. getDiffMon(Date dt, int idiff)
  3. getDiffToString(Date date, int n, String pattern)
  4. getScoreDifferenceString(int newNumber, int oldNumber)
  5. getSecondDiff(Date d1, Date d2)
  6. nextSeconds(Date date, int diff)
  7. parseParamDate(final String diff)
  8. timeDiff(Calendar date1, Calendar date2)
  9. timeDiffHourMinSec(Date start, Date end)