Answers for "how to find name of day from date month and year in java"

2

get day from date month year java

Calendar cal = Calendar.getInstance();
cal.set(year,month-1,day);
int nd = cal.get(Calendar.DAY_OF_WEEK);
Posted by: Guest on May-18-2021

Code answers related to "how to find name of day from date month and year in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language