I know the week number of the year, a week is start from Sunday, then Monday, Tuesday...,Saturday.
Since I know the week number, what\'s the efficient way to get the
Based on this:
final long calendarWeek = 34; LocalDate desiredDate = LocalDate.now() .with(IsoFields.WEEK_OF_WEEK_BASED_YEAR, calendarWeek) .with(TemporalAdjusters.previousOrSame(DayOfWeek.MONDAY));