描述
这个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
相关用法
- Java java.time.ZonedDateTime.from()用法及代码示例
- Java java.time.ZonedDateTime.ofLocal()用法及代码示例
- Java java.time.ZonedDateTime.toOffsetDateTime()用法及代码示例
- Java java.time.ZonedDateTime.getMinute()用法及代码示例
- Java java.time.ZonedDateTime.withSecond()用法及代码示例
- Java java.time.ZonedDateTime.plusYears()用法及代码示例
- Java java.time.ZonedDateTime.withMonth()用法及代码示例
- Java java.time.ZonedDateTime.plusNanos()用法及代码示例
- Java java.time.ZonedDateTime.ofInstant()用法及代码示例
- Java java.time.ZonedDateTime.getMonthValue()用法及代码示例
- Java java.time.ZonedDateTime.until()用法及代码示例
- Java java.time.ZonedDateTime.withYear()用法及代码示例
- Java java.time.ZonedDateTime.getNano()用法及代码示例
- Java java.time.ZonedDateTime.withMinute()用法及代码示例
- Java java.time.ZonedDateTime.now()用法及代码示例
- Java java.time.ZonedDateTime.minusMonths()用法及代码示例
- Java java.time.ZonedDateTime.getZone()用法及代码示例
- Java java.time.ZonedDateTime.minusMinutes()用法及代码示例
- Java java.time.ZonedDateTime.truncatedTo()用法及代码示例
- Java java.time.ZonedDateTime.hashCode()用法及代码示例
注:本文由纯净天空筛选整理自 java.time.ZonedDateTime.format() Method Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。