在使用 LocalDateTime 进行时间格式化时,可以使用 DateTimeFormatter 类来实现。以下是一个将当前时间格式化为 “yyyy-MM-dd HH:mm:ss” 的示例代码:
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
LocalDateTime now = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String formattedDateTime = now.format(formatter);
System.out.println("Formatted date/time: " + formattedDateTime);
}
}
上述代码中, DateTimeFormatter 的 ofPattern 方法用于指定日期时间格式,与 SimpleDateFormat 中的格式字符串类似。然后,使用 LocalDateTime 的 format 方法将当前时间格式化为指定格式的字符串。
注意, DateTimeFormatter 是线程安全的,因此可以在多线程环境下共享使用。