Java Program to adjust LocalDate to next Tuesday with TemporalAdjusters class


At first, set a LocalDate:

LocalDate localDate = LocalDate.of(2019, Month.FEBRUARY, 2);

Now, adjust the LocalDate to next Tuesday using next() method:

LocalDate date = localDate.with(TemporalAdjusters.next(DayOfWeek.TUESDAY));

Example

import java.time.DayOfWeek;
import java.time.LocalDate;
import java.time.Month;
import java.time.temporal.TemporalAdjusters;
public class Demo {
   public static void main(String[] args) {
      LocalDate localDate = LocalDate.of(2019, Month.FEBRUARY, 2);
      System.out.println("Current Date = "+localDate);
      System.out.println("Current Month = "+localDate.getMonth());
      LocalDate date = localDate.with(TemporalAdjusters.firstDayOfMonth());
      System.out.println("First day of month = "+date);
      date = localDate.with(TemporalAdjusters.next(DayOfWeek.TUESDAY));
      System.out.println("Next Tuesday date = "+date);
   }
}

Output

Current Date = 2019-02-02
Current Month = FEBRUARY
First day of month = 2019-02-01
Next Tuesday date = 2019-02-05

Updated on: 30-Jul-2019

88 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements