Here you can find the source of getSecondDiff(Date d1, Date d2)
static public long getSecondDiff(Date d1, Date d2)
//package com.java2s; import java.util.*; public class Main { static public long getSecondDiff(Date d1, Date d2) { long d1t = d1.getTime(); long d2t = d2.getTime(); return (d2t - d1t) / 1000; }//from w ww. j av a2s. c o m }