java.time.MonthDay parse()方法
java.time.MonthDay.parse(CharSequence text,DateTimeFormatter formatter)方法使用特定格式化程序从文本字符串中获取MonthDay的实例。
1 语法
public static MonthDay parse(CharSequence text, DateTimeFormatter formatter)
2 参数
text:要解析的文本,例如:"--10-15",而不是null。
formatter:要使用的格式化程序,而不是null。
3 返回值
本地日期,不为null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.MonthDay parse()方法
*/
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
热门文章
优秀文章