java.time.LocalDate.parse(CharSequence text,DateTimeFormatter formatter)
方法使用特定格式化程式從文本字串中獲取LocalDate的實例。
聲明
以下是java.time.LocalDate.parse(CharSequence text,DateTimeFormatter formatter)
方法的聲明。
public static LocalDate parse(CharSequence text, DateTimeFormatter formatter)
參數
text
- 要解析的文本,例如:2017-02-03
,而不是null
。formatter
- 要使用的格式化程式,而不是null
。
返回值
本地日期,不為null
。
異常
DateTimeParseException
- 如果無法解析文本。
示例
以下示例顯示了java.time.LocalDate.parse(CharSequence text,DateTimeFormatter formatter)
方法的用法。
package com.zaixian;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class LocalDateDemo {
public static void main(String[] args) {
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("dd MMM uuuu");
String date = "03 Feb 2017";
LocalDate localDate = LocalDate.parse(date, dateTimeFormatter);
System.out.println(localDate);
}
}
編譯並運行上面的程式,這將產生以下結果 -
2017-02-03
上一篇:
java.time.LocalDate類
下一篇:
java.time.LocalDateTime類