Java LocalDate create from Year and MonthDay

Description

Java LocalDate create from Year and MonthDay

import java.time.LocalDate;
import java.time.Month;
import java.time.MonthDay;
import java.time.Year;
import java.time.format.TextStyle;
import java.util.Locale;

public class Main {
  public static void main(String[] args) {
    MonthDay dec25 = MonthDay.of(Month.DECEMBER, 25);    
    Year year = Year.now();
    //from w w  w. j  a va2  s.c om
    for (int i = 1; i <= 5; i++) {
      LocalDate ld = year.plusYears(i).atMonthDay(dec25);
      int yr = ld.getYear();
      String weekDay = ld.getDayOfWeek()
                         .getDisplayName(TextStyle.FULL, Locale.getDefault());
      System.out.format("Christmas in %d is on %s.%n", yr, weekDay);
    }
  }
}



PreviousNext

Related