java.time.Duration.parse() Method Example
Description
The java.time.Duration.parse(CharSequence text) method obtains a Duration from a text string such as PnDTnHnMn.nS.
Declaration
Following is the declaration for java.time.Duration.parse(CharSequence text) method.
public static Duration parse(CharSequence text)
Parameters
text − the text to parse, not null.
Return Value
the parsed duration, not null.
Exception
DateTimeParseException − if the text cannot be parsed to a duration.
Example
The following example shows the usage of java.time.Duration.parse(CharSequence text) method.
package com.tutorialspoint;
import java.time.Duration;
public class DurationDemo {
public static void main(String[] args) {
Duration duration = Duration.parse("PT20.345S");
System.out.println(duration.toMillis());
}
}
Let us compile and run the above program, this will produce the following result −
20345
Advertisements