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



说明

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

声明

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

public String format(DateTimeFormatter formatter)

参数

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

返回值

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

异常

DateTimeException − 如果在打印过程中发生错误。

示例

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

package com.tutorialspoint;

import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;

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

      LocalDateTime date = LocalDateTime.parse("2017-02-03T12:30:30");
      System.out.println(date);  
      DateTimeFormatter formatter = DateTimeFormatter.ISO_TIME;
      System.out.println(formatter.format(date));  
   }
}

让我们编译并运行上面的程序,将得到以下结果 −

2017-02-03T12:30:30
12:30:30
广告