阅读量:3
在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方法将其转换为字符串并打印输出。