Here you can find the source of getStringDayOfWeek(Date date)
public static String getStringDayOfWeek(Date date)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getStringDayOfWeek(Date date) { SimpleDateFormat sdf = new SimpleDateFormat("EEEEE"); return sdf.format(date); }/*from w w w. j a v a 2s . c om*/ }