Java Period parse()方法及示例
Period类 的 parse() 方法用于从给定的字符串中获得一个PnYnMnD形式的周期,其中nY表示n年,nM表示n个月,nD表示n天。
语法
public static Period parse(CharSequence text)
参数: 该方法接受一个单一参数 text ,即要解析的字符串。
返回: 该函数返回周期,即作为参数的字符串的解析表示。
下面是Period.parse()方法的实现。
例子1:
// Java code to demonstrate parse() method
// to obtain period from given string
import java.time.Period;
class GFG {
public static void main(String[] args)
{
// Get the String to be parsed
String period = "P1Y2M21D";
// Parse the String into Period
// using parse() method
Period p = Period.parse(period);
System.out.println(p.getYears() + " Years\n"
+ p.getMonths() + " Months\n"
+ p.getDays() + " Days");
}
}
输出:
1 Years
2 Months
21 Days
例2:
// Java code to demonstrate parse() method
// to obtain period from given string
import java.time.Period;
class GFG {
public static void main(String[] args)
{
// Get the String to be parsed
String period = "-P1Y2M21D";
// Parse the String into Period
// using parse() method
Period p = Period.parse(period);
System.out.println(p.getYears() + " Years\n"
+ p.getMonths() + " Months\n"
+ p.getDays() + " Days");
}
}
输出:
-1 Years
-2 Months
-21 Days
参考资料: https://docs.oracle.com/javase/9/docs/api/java/time/Period.html#parse-java.lang.CharSequence-