Here you can find the source of isWeekEnd(Date date)
private static boolean isWeekEnd(Date date)
//package com.java2s; //License from project: Apache License import java.util.Calendar; import java.util.Date; public class Main { private static boolean isWeekEnd(Date date) { Calendar cal = Calendar.getInstance(); cal.setTime(date);//from ww w. j av a 2s . c o m if (cal.get(Calendar.DAY_OF_WEEK) == Calendar.SUNDAY || cal.get(Calendar.DAY_OF_WEEK) == Calendar.SATURDAY) return true; else return false; } }