localDateTime实例怎么转String
时间: 2024-06-06 16:11:44 浏览: 103
Java8时间转换(LocalDateTime)代码实例
?将localDateTime实例转为String可以使用DateTimeFormatter类中提供的format方法,使用这个方法可以将localDateTime实例按照指定的格式化模式转换为String类型。例如:
LocalDateTime localDateTime = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String dateTimeString = localDateTime.format(formatter);
System.out.println(dateTimeString);
这段代码将当前时间的localDateTime实例转为String类型,并按照"yyyy-MM-dd HH:mm:ss"的格式化模式进行格式化。输出结果如下:
2022-05-31 18:20:35
阅读全文