LocalDateTime格式化为String
时间: 2023-11-09 15:57:16 浏览: 88
DateTime格式化
LocalDateTime可以使用DateTimeFormatter将其格式化为String。具体的做法是创建一个DateTimeFormatter对象,指定所需的日期时间格式,然后使用format方法将LocalDateTime对象转换为String。例如,使用"yyyy-MM-dd HH:mm:ss"格式化为String,代码如下所示:
引用:import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
LocalDateTime now = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String format = now.format(formatter);
System.out.println(format);
这段代码将当前的LocalDateTime对象格式化为"yyyy-MM-dd HH:mm:ss"格式的字符串。输出的结果将是类似"2021-01-01 10:30:00"的字符串。
阅读全文