java.time.MonthDay.parse(CharSequence text,DateTimeFormatter formatter)
方法使用特定格式化程式從文字字串中獲取MonthDay的範例。
以下是java.time.MonthDay.parse(CharSequence text,DateTimeFormatter formatter)
方法的宣告。
public static MonthDay parse(CharSequence text, DateTimeFormatter formatter)
text
- 要解析的文字,例如:"--10-15"
,而不是null
。formatter
- 要使用的格式化程式,而不是null
。本地日期,不為null
。
DateTimeParseException
- 如果無法解析文字。以下範例顯示了java.time.MonthDay.parse(CharSequence text,DateTimeFormatter formatter)
方法的用法。
package com.yiibai;
import java.time.MonthDay;
import java.time.format.DateTimeFormatter;
public class MonthDayDemo {
public static void main(String[] args) {
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("--MM-dd");
String date = "--10-15";
MonthDay date1 = MonthDay.parse(date, dateTimeFormatter);
System.out.println(date1);
}
}
編譯並執行上面的程式,這將產生以下結果 -
--10-15