Here you can find the source of getDifferDays(String date1, String date2)
public static long getDifferDays(String date1, String date2)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.*; public class Main { static public SimpleDateFormat yyyyMMdd = new SimpleDateFormat("yyyy-MM-dd"); public static long getDifferDays(String date1, String date2) { Date tempDate1 = str2date(date1); Date tempDate2 = str2date(date2); long differDays = 0; differDays = tempDate2.getTime() - tempDate1.getTime(); long todaySeconds = 1000 * 24 * 60 * 60; return differDays / todaySeconds + 1; }// w w w . j a v a 2s . c o m public static Date str2date(String str) { Date result = null; try { Date udate = yyyyMMdd.parse(str); result = new Date(udate.getTime()); return result; } catch (Exception e) { e.printStackTrace(); return null; } } public static String getTime(String parrten) { String timestr; if (parrten == null || parrten.equals("")) { parrten = "yyyyMMddHHmmss"; } java.text.SimpleDateFormat sdf = new SimpleDateFormat(parrten); java.util.Date cday = new java.util.Date(); timestr = sdf.format(cday); return timestr; } }