You are viewing a single comment's thread. Return to all comments →
Use the Language as java 8
use function -LocalDate use these imports - import java.time.LocalDate; import java.time.DayOfWeek; import java.util.Locale;
code ----- LocalDate date = LocalDate.of(year, month, day); DayOfWeek dayOfWeek = date.getDayOfWeek(); return dayOfWeek.name();
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 →
Use the Language as java 8
use function -LocalDate use these imports - import java.time.LocalDate; import java.time.DayOfWeek; import java.util.Locale;
code ----- LocalDate date = LocalDate.of(year, month, day); DayOfWeek dayOfWeek = date.getDayOfWeek(); return dayOfWeek.name();