Thursday, July 4, 2024
HomeLanguagesJavaOffsetTime parse() method in Java with examples

OffsetTime parse() method in Java with examples

In OffsetTime class, there are two types of parse() method depending upon the parameters passed to it.

parse(CharSequence text)

parse() method of a OffsetTime class used to get an instance of OffsetTime from a string such as ’15:25:10+01:00′ passed as parameter.The string must have a valid date-time and is parsed using DateTimeFormatter.ISO_LOCAL_TIME.

Syntax:

public static OffsetTime parse(CharSequence text)

Parameters: This method accepts only one parameter text which is the text to parse in OffsetTime. It should not be null.

Return value: This method returns OffsetTime which is the parsed local date-time.

Exception: This method throws DateTimeParseException if the text cannot be parsed.

Below programs illustrate the parse() method:
Program 1:




// Java program to demonstrate
// OffsetTime.parse() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create an OffsetTime object
        OffsetTime lt
            = OffsetTime.parse("15:25:10+01:00");
  
        // print result
        System.out.println("OffsetTime : "
                           + lt);
    }
}


Output:

OffsetTime : 15:25:10+01:00

parse(CharSequence text, DateTimeFormatter formatter)

parse() method of a OffsetTime class used to get an instance of OffsetTime from a string such as ’15:25:10+01:00′ passed as parameter using a specific formatter.The date-time is parsed using a specific formatter.

Syntax:

public static OffsetTime parse(CharSequence text,
                              DateTimeFormatter formatter)

Parameters: This method accepts two parameters text which is the text to parse and formatter which is the formatter to use.

Return value: This method returns OffsetTime which is the parsed local date-time.

Exception: This method throws DateTimeParseException if the text cannot be parsed.

Below programs illustrate the parse() method:
Program 1:




// Java program to demonstrate
// OffsetTime.parse() method
  
import java.time.*;
import java.time.format.DateTimeFormatter;
  
public class GFG {
    public static void main(String[] args)
    {
  
        DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ISO_OFFSET_TIME;
  
        // create an OffsetTime object and
        OffsetTime lt
            = OffsetTime
                  .parse("11:35:34+01:00",
                         dateTimeFormatter);
  
        // print result
        System.out.println("OffsetTime : "
                           + lt);
    }
}


Output:

OffsetTime : 11:35:34+01:00

References: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#parse-java.lang.CharSequence-

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