Thursday, February 19, 2026
HomeLanguagesJavaOffsetTime plusSecond() method in Java with Examples

OffsetTime plusSecond() method in Java with Examples

The plusSeconds() method of OffsetTime class is used to add specified number of seconds value to this OffsetTime and return the result as a OffsetTime object. This instant is immutable. The calculation wraps around midnight.

Syntax:

public OffsetTime plusSeconds(long SecondsToAdd)

Parameters: This method accepts a single parameter SecondsToAdd which is the value of Seconds to be added, it can be a negative value.

Return value: This method returns a OffsetTime based on this time with the Seconds added.

Below programs illustrate the plusSeconds() method:

Program 1:




// Java program to demonstrate
// OffsetTime.plusSeconds() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a OffsetTime object
        OffsetTime time
            = OffsetTime.parse("21:15:10+11:10");
  
        // print OffsetTime
        System.out.println("OffsetTime before addition: "
                           + time);
  
        // add 200 Seconds using plusSeconds()
        OffsetTime value = time.plusSeconds(200);
  
        // print result
        System.out.println("OffsetTime after addition: "
                           + value);
    }
}


Output:

OffsetTime before addition: 21:15:10+11:10
OffsetTime after addition: 21:18:30+11:10

Program 2:




// Java program to demonstrate
// OffsetTime.plusSeconds() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a OffsetTime object
        OffsetTime time
            = OffsetTime.parse("14:25:10+01:10");
  
        // print OffsetTime
        System.out.println("OffsetTime before addition: "
                           + time);
  
        // add -3400 Seconds using plusSeconds()
        OffsetTime value = time.plusSeconds(-3400);
  
        // print result
        System.out.println("OffsetTime after addition: "
                           + value);
    }
}


Output:

OffsetTime before addition: 14:25:10+01:10
OffsetTime after addition: 13:28:30+01:10

References: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#plusSeconds-long-

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

1 COMMENT

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS