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



描述

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

声明

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

public String format(DateTimeFormatter formatter)

参数

formatter − 要使用的格式化器,非空。

返回值

格式化的日期字符串,非空。

异常

DateTimeException − 如果打印时出错。

示例

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

package com.tutorialspoint;

import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;

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

      ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:13:20.408+05:30[Asia/Calcutta]");
      System.out.println(date);  
      DateTimeFormatter formatter = DateTimeFormatter.ISO_TIME;
      System.out.println(formatter.format(date));  
   }
}

现在我们开始编译并运行上述程序,结果如下所示 −

2017-03-28T12:13:20.408+05:30[Asia/Calcutta]
12:13:20.408+05:30
广告