Thursday, December 11, 2025
HomeLanguagesJavaLocalDateTime plusMinutes() method in Java with Examples

LocalDateTime plusMinutes() method in Java with Examples

The plusMinutes() method of LocalDateTime class is used to return a copy of this date-time with the specified minutes added.

Syntax:

public LocalDateTime plusMinutes(long minutes)

Parameter: It accepts a single parameter minutes which specifies the minutes to add which may be negative.

Return Value: This method returns a LocalDateTime based on this date-time with the minutes added.

Exceptions: The programs throws a DateTimeException which is thrown if the result exceeds the supported date range.

Below programs illustrate the YearMonth.plusMinutes() method in Java:

Program 1:




// Program to illustrate the plusMinutes() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        LocalDateTime dt1
            = LocalDateTime
                  .parse("2018-01-11T10:15:30");
  
        System.out.println("LocalDateTime with 15 minutes added: "
                           + dt1.plusMinutes(15));
    }
}


Output:

LocalDateTime with 15 minutes added: 2018-01-11T10:30:30

Program 2:




// Program to illustrate the plusMinutes() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        LocalDateTime dt1
            = LocalDateTime
                  .parse("2018-01-11T08:15:30");
  
        System.out.println("LocalDateTime with -2 minutes added: "
                           + dt1.plusMinutes(-2));
    }
}


Output:

LocalDateTime with -2 minutes added: 2018-01-11T08:13:30

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

RELATED ARTICLES

Most Popular

Dominic
32440 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6811 POSTS0 COMMENTS
Nicole Veronica
11950 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12023 POSTS0 COMMENTS
Shaida Kate Naidoo
6943 POSTS0 COMMENTS
Ted Musemwa
7195 POSTS0 COMMENTS
Thapelo Manthata
6889 POSTS0 COMMENTS
Umr Jansen
6880 POSTS0 COMMENTS