Here you can find the source of isDefaultWorkingDay(Date date)
public static final boolean isDefaultWorkingDay(Date date)
//package com.java2s; import java.util.*; public class Main { public static final boolean isDefaultWorkingDay(Date date) { Calendar calendar = Calendar.getInstance(); calendar.setTime(date);// w w w . j av a2 s . co m int week = calendar.get(Calendar.DAY_OF_WEEK); return !(week == 7 || week == 1); } }