Here you can find the source of getMilliSecond(Date d1, Date d2)
public static long getMilliSecond(Date d1, Date d2)
//package com.java2s; import java.util.*; public class Main { public static long getMilliSecond(Date d1, Date d2) { long d1MS = d1.getTime(); long d2MS = d2.getTime(); return Math.abs(d1MS - d2MS); }/*from www . j a v a 2 s .co m*/ }