Here you can find the source of getIntervalIncludeWeekend(Date date)
public static int getIntervalIncludeWeekend(Date date)
//package com.java2s; import java.util.Calendar; import java.util.Date; public class Main { public static int getIntervalIncludeWeekend(Date date) { Calendar now = Calendar.getInstance(); Calendar calendar = Calendar.getInstance(); calendar.setTime(date);// w ww. j a v a 2 s .c om int d = (int) ((now.getTimeInMillis() - calendar.getTimeInMillis()) / (24 * 60 * 60 * 1000)); return d; } }