java.time.MonthDay.parse() 方法示例



说明

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”, 非空。

  • formatter − 要使用的格式化程序,非空。

返回值

本地日期,非空。

异常

DateTimeParseException − 如果无法解析文本。

示例

以下示例显示了 java.time.MonthDay.parse(CharSequence text, DateTimeFormatter formatter) 方法的用法。

package com.tutorialspoint;

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
广告