- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Period parse() method in Java
The Period instance can be obtained from a string value using the parse() method in the Period class in Java. This method requires a single parameter i.e. the string which is to be parsed. This string cannot be null. Also, it returns the Period instance obtained from the string value that was passed as a parameter.
A program that demonstrates this is given as follows:
Example
import java.time.Period; public class Demo { public static void main(String[] args) { String period = "P5Y7M15D"; Period p = Period.parse(period); System.out.println("The Period is: " + p); } }
Output
The Period is: P5Y7M15D
Now let us understand the above program.
The Period instance is obtained from the string value using the parse() method. Then this instance is displayed. A code snippet that demonstrates this is as follows:
String period = "P5Y7M15D"; Period p = Period.parse(period); System.out.println("The Period is: " + p);
- Related Articles
- Instant parse() method in Java
- LocalDate parse() method in Java
- LocalDateTime parse() method in Java
- LocalTime parse() method in Java
- Period ofDays() method in Java
- Period ofMonths() method in Java
- Period ofYears() method in Java
- Period ofWeeks() method in Java
- Period withMonths() method in Java
- Period withYears() method in Java
- Period withDays() method in Java
- Period plusDays() method in Java
- Period equals() method in Java
- Period isNegative() method in Java
- Period plusMonths() method in Java

Advertisements