Java tutorial
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; public class Main { public static String getDayOfWeek(Date date) { SimpleDateFormat sdf = new SimpleDateFormat("E", Locale.US); if (date != null) { return sdf.format(date); } else { return "???"; } } }