You are viewing a single comment's thread. Return to all comments →
Calendar cald = Calendar.getInstance();
String days[] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}; cald.set(year, month-1, day); return days[cald.get(Calendar.DAY_OF_WEEK)-1].toUpperCase();
Seems like cookies are disabled on this browser, please enable them to open this website
Java Date and Time
You are viewing a single comment's thread. Return to all comments →
Find Out Day By Date, Year & Month
Calendar cald = Calendar.getInstance();