Java中Localdatetime怎么转字符串

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

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!