Here you can find the source of getDays(Date sd, Date ed)
public static int getDays(Date sd, Date ed)
//package com.java2s; import java.util.*; public class Main { public static int getDays(Date sd, Date ed) { return (int) ((ed.getTime() - sd.getTime()) / (3600 * 24 * 1000)); }//w ww . j ava 2 s . co m public static long getTime() { Date dt = new Date(); return dt.getTime(); } }