java.time.LocalDate.format() 方法示例



说明

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

声明

以下是 java.time.LocalDate.format(DateTimeFormatter formatter) 方法的声明。

public String format(DateTimeFormatter formatter)

参数

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

返回值

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

异常

DateTimeException − 如果打印期间发生错误。

示例

以下示例演示了 java.time.LocalDate.format(DateTimeFormatter formatter) 方法的使用。

package com.tutorialspoint;

import java.time.LocalDate;
import java.time.format.DateTimeFormatter;

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

      LocalDate date = LocalDate.parse("2017-02-03");
      System.out.println(date);  
      DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd/MM/YYYY");
      System.out.println(formatter.format(date));  
   }
}

让我们编译并运行上述程序,它将产生以下结果 −

2017-02-03
03/02/2017
广告