get the first monday of a month in java

Solutions on MaxInterview for get the first monday of a month in java by the best coders in the world

showing results for - "get the first monday of a month in java"
Tyron
11 Jan 2021
1LocalDate now = LocalDate.now();
2
3LocalDate firstMonday = now.with(TemporalAdjusters.firstInMonth(DayOfWeek.MONDAY));