Saturday, December 13, 2025
HomeLanguagesJavaOffsetDateTime minusMonths() method in Java with examples

OffsetDateTime minusMonths() method in Java with examples

The minusMonths() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the specified number of months subtracted from the parsed date and time.

Syntax:

public OffsetDateTime minusMonths(long months)

Parameter: This method accepts a single parameter months which specifies the months to be subtracted from the parsed date. It can be negative also, in that case, it adds the number of months to it.

Return Value: It returns an OffsetDateTime based on this date-time with the months subtracted and not null.

Exceptions: The program throws a DateTimeException when it exceeds the supported data and time range.

Below programs illustrate the minusMonths() method:

Program 1:




// Java program to demonstrate the minusMonths() method
  
import java.time.OffsetDateTime;
import java.time.ZonedDateTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Parses the date1
        OffsetDateTime date1
            = OffsetDateTime
                  .parse(
                      "2018-12-12T13:30:30+05:00");
  
        // Prints dates
        System.out.println("Date1: " + date1);
  
        // Subtracts the number of months
        System.out.println("Date1 after subtracting months: "
                           + date1.minusMonths(-120));
    }
}


Output:

Date1: 2018-12-12T13:30:30+05:00
Date1 after subtracting months: 2028-12-12T13:30:30+05:00

Program 2:




// Java program to demonstrate the minusMonths() method
import java.time.OffsetDateTime;
import java.time.ZonedDateTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Parses the date1
        OffsetDateTime date1
            = OffsetDateTime
                  .parse(
                      "2018-12-12T13:30:30+05:00");
  
        // Prints dates
        System.out.println("Date1: " + date1);
  
        // Subtracts the number of months
        System.out.println("Date1 after subtracting months: "
                           + date1.minusMonths(140));
    }
}


Output:

Date1: 2018-12-12T13:30:30+05:00
Date1 after subtracting months: 2007-04-12T13:30:30+05:00

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/OffsetDateTime.html#minusMonths(long)

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32447 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6816 POSTS0 COMMENTS
Nicole Veronica
11953 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12031 POSTS0 COMMENTS
Shaida Kate Naidoo
6951 POSTS0 COMMENTS
Ted Musemwa
7202 POSTS0 COMMENTS
Thapelo Manthata
6898 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS