Wednesday, May 6, 2026
HomeLanguagesJavaDuration parse(CharSequence) method in Java with Examples

Duration parse(CharSequence) method in Java with Examples

The parse(CharSequence) method of Duration Class in java.time package is used to get a Duration from a string passed as the parameter. The format for the String to be parsed is “PnDTnHnMn.nS” where “nD” means ‘n’ number of Days, “nH” means ‘n’ number of Hours, “nM” means ‘n’ number of Minutes, “nS” means ‘n’ number of Seconds and “T” is a prefix that must be used before the part consisting of “nHnMn.nS”.  The formats accepted are based on the ISO-8601 duration format. Syntax:

public static Duration parse(CharSequence text)

Parameters: This method accepts a parameter text which is CharSequence to be parsed into Duration. Return Value: This method returns a Duration representing the time passed in the form of CharSequence as parameter. Exception: This method throws DateTimeParseException if the text cannot be parsed to a duration. Below examples illustrate the Duration.parse() method: Example 1: 

Java




// Java code to illustrate parse() method
 
import java.time.Duration;
 
public class GFG {
    public static void main(String[] args)
    {
 
        // Get the text
        String time = "P2DT3H4M";
 
        // Duration using parse() method
        Duration duration
            = Duration.parse(time);
 
        System.out.println(duration.getSeconds());
    }
}


Output:

183840

Example 2: To demonstrate DateTimeParseException 

Java




// Java code to illustrate parse() method
 
import java.time.Duration;
 
public class GFG {
    public static void main(String[] args)
    {
 
        // Get the text
        String time = "M";
 
        try {
            // Duration using parse() method
            Duration duration
                = Duration.parse(time);
        }
        catch (Exception e) {
            System.out.println("Exception: " + e);
        }
    }
}


Output:

Exception:
 java.time.format.DateTimeParseException:
 Text cannot be parsed to a Duration

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/Duration.html#parse-java.lang.CharSequence-

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

2 COMMENTS

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6889 POSTS0 COMMENTS
Nicole Veronica
12011 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12105 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6962 POSTS0 COMMENTS