Java Add Months To Date

Chapter: Date and Time Last Updated: 14-05-2023 05:44:50 UTC

Program:

            /* ............... START ............... */
                
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;

public class DateExample {
    public static void main(String[] args) {
        // Get the current date
        LocalDate currentDate = LocalDate.now();
        System.out.println("Current date: " + formatDate(currentDate));

        // Add 3 months to the current date
        LocalDate futureDate = currentDate.plusMonths(3);
        System.out.println("Date after adding 3 months: " + formatDate(futureDate));
    }

    private static String formatDate(LocalDate date) {
        DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
        return date.format(formatter);
    }
}

                /* ............... END ............... */
        

Output

Current date: 2023-05-14
Date after adding 3 months: 2023-08-14

Notes:

  • In this example, we start by obtaining the current date using LocalDate.now(). We then add 3 months to the current date using the plusMonths() method. Finally, we format the dates using the DateTimeFormatter to display them in the desired format ("yyyy-MM-dd").
  • When you run this code, it will output the current date and the date after adding 3 months.
  • The formatDate() method takes a LocalDate object and formats it into a string representation using the specified date format ("yyyy-MM-dd"). This method uses the DateTimeFormatter class to format the date.

Tags

Java Add Months To Date, How do I add one month to current date in Java, Adding or Subtracting Months to Current date in Java

Similar Programs Chapter Last Updated
Java Date Format AM PM Date and Time 14-05-2023
Add Days To Date In Java example Date and Time 14-05-2023
Java Program To Calculate Days Between Two Dates Date and Time 16-04-2023
Java Program To Add Days To Date Date and Time 16-04-2023
How To Find Difference Between Two Dates In Java Date and Time 01-04-2023
Add Days To Date Java Example Date and Time 08-08-2021
Time Difference Between Two Timestamps In Java Date and Time 22-09-2018

1