Thursday, July 4, 2024
HomeLanguagesJavaOffsetDateTime withSecond() method in Java with examples

OffsetDateTime withSecond() method in Java with examples

The withSecond() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the second-of-minute altered as specified in the parameter.

Syntax:

public OffsetDateTime withSecond(int second)

Parameter: This method accepts a single parameter second which specifies the second-of-minute to be set in the result which can range from 0 to 59.

Return Value: It returns a OffsetDateTime based on this date with the requested second-of-minute and not null.

Exceptions: The program throws a DateTimeException when the second-of-minute value is invalid.

Below programs illustrate the withSecond() method:

Program 1:




// Java program to demonstrate the withSecond() method
  
import java.time.OffsetDateTime;
  
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);
  
        // Changes the second-of-minute
        System.out.println("Date1 after altering second-of-minute: "
                           + date1.withSecond(40));
    }
}


Output:

Date1: 2018-12-12T13:30:30+05:00
Date1 after altering second-of-minute : 2018-12-12T13:30:40+05:00

Program 2:




// Java program to demonstrate the withSecond() method
  
import java.time.OffsetDateTime;
  
public class GFG {
    public static void main(String[] args)
    {
        try {
  
            // Parses the date1
            OffsetDateTime date1
                = OffsetDateTime
                      .parse(
                          "2018-12-12T13:30:30+05:00");
  
            // Prints dates
            System.out.println("Date1: " + date1);
  
            // Changes the second-of-minute
            System.out.println("Date1 after altering second-of-minute: "
                               + date1.withSecond(70));
        }
        catch (Exception e) {
            System.out.println("Exception: " + e);
        }
    }
}


Output:

Date1: 2018-12-12T13:30:30+05:00
Exception: java.time.DateTimeException:
           Invalid value for SecondOfMinute (valid values 0 - 59): 70

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

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments