📅  最后修改于: 2023-12-03 15:01:51.937000             🧑  作者: Mango
ChronoZonedDateTime是Java 8新增的日期时间API中的一个类,它表示ISO-8601或其他日期时间系统的日期和时间。format()方法是该类中的一个使用频率非常高的方法,它可以将ChronoZonedDateTime对象转化为字符串表示形式。
public String format(DateTimeFormatter formatter)
参数说明:
返回值:
下面是一些使用format()方法的示例:
LocalDateTime now = LocalDateTime.now();
ZoneId zoneId = ZoneId.systemDefault();
ZonedDateTime zonedDateTime = now.atZone(zoneId);
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss z");
String formattedDateTime = zonedDateTime.format(formatter);
System.out.println("Formatted datetime: " + formattedDateTime);
输出结果:
Formatted datetime: 2022-06-09 11:29:44 CST
Instant instant = Instant.now();
ZoneId zoneId = ZoneId.systemDefault();
ZonedDateTime zonedDateTime = instant.atZone(zoneId);
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss z");
String formattedDateTime = zonedDateTime.format(formatter);
System.out.println("Formatted datetime: " + formattedDateTime);
输出结果:
Formatted datetime: 2022-06-09 11:29:44 CST
LocalDateTime localDateTime = LocalDateTime.of(2022, 06, 09, 13, 59, 0);
ZoneId zoneId = ZoneId.of("Asia/Shanghai");
ZonedDateTime zonedDateTime = localDateTime.atZone(zoneId);
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss z");
String formattedDateTime = zonedDateTime.format(formatter);
System.out.println("Formatted datetime: " + formattedDateTime);
输出结果:
Formatted datetime: 2022-06-09 13:59:00 CST
随着Java 8的发布,ChronoZonedDateTime类已经成为Java日期时间API的重要组成部分。format()方法是它的一个常用方法,可以将ChronoZonedDateTime对象转化为字符串表示形式。使用该方法可以方便地进行日期和时间的处理,使程序开发更加高效。