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.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class Main { public static int getDays(Date sd, Date ed) { return (int) ((ed.getTime() - sd.getTime()) / (3600 * 24 * 1000)); }//from w w w. j av a 2 s . c o m public static long getTime() { java.util.Date dt = new java.util.Date(); return dt.getTime(); } public static String getTime(String s) { if (s == null || s.equals("")) return ""; String s1 = ""; try { SimpleDateFormat simpledateformat = new SimpleDateFormat(s); s1 = simpledateformat.format(Calendar.getInstance().getTime()); } catch (Exception exception) { System.out.println(Calendar.getInstance().toString() + "cannot format time [function:getTime(String)]"); exception.printStackTrace(); } return s1; } }