java.time.MonthDay format()方法

java.time.MonthDay.format(DateTimeFormatter formatter)方法使用指定的格式化程序格式化此月-日。

1 语法

public String format(DateTimeFormatter formatter)

2 参数

formatter:要使用的格式化程序,不能为null。

3 返回值

格式化的日期字符串,不能为null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.MonthDay format()方法
 */
import java.time.MonthDay;
import java.time.format.DateTimeFormatter;

public class MonthDayDemo {
   public static void main(String[] args) {

      MonthDay date = MonthDay.parse("--12-30");
      System.out.println(date);  
      DateTimeFormatter formatter = DateTimeFormatter.ofPattern("--MM-dd");
      System.out.println(formatter.format(date));  
   }
}

输出结果为:

--12-30
--12-30

 

热门文章

优秀文章