在Java中,可以使用DateTimeFormatter類來將LocalDateTime對象轉換為字符串。下面是一個示例代碼:
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 LocalDateTime: " + formattedDateTime);
}
}
在上面的代碼中,我們首先創建了一個LocalDateTime對象表示當前日期和時間。然后使用DateTimeFormatter類創建一個格式化模板,最后調用LocalDateTime對象的format方法將其轉換為字符串并打印輸出。