LocalDateTime 转 字符串
时间: 2024-05-14 18:10:26 浏览: 90
LocalDateTime 转字符串可以使用 DateTimeFormatter 类的 format 方法,将 LocalDateTime 对象按照指定的格式转换为字符串。例如:
```java
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class LocalDateTimeToString {
public static void main(String[] args) {
LocalDateTime now = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String nowString = now.format(formatter);
System.out.println(nowString);
}
}
```
以上代码中,我们使用 LocalDateTime.now() 获取当前时间,然后使用 DateTimeFormatter.ofPattern() 创建一个格式化器,设置日期时间字符串的格式。最后使用 LocalDateTime.format() 将 LocalDateTime 对象格式化为字符串。
相关问题
localdatetime转字符串
要将LocalDateTime转换为字符串,可以使用DateTimeFormatter类来指定日期时间的格式。以下是一个例子:
```
LocalDateTime localDateTime = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String localDateTimeStr = localDateTime.format(formatter);
System.out.println(localDateTimeStr);
```
这段代码将当前的LocalDateTime对象转换为字符串形式,使用的日期时间格式是"yyyy-MM-dd HH:mm:ss"。你可以根据需要自定义日期时间的格式。
LocalDateTime 转字符串
要将 LocalDateTime 对象转换为字符串,可以使用 DateTimeFormatter 类的 format 方法。以下是示例代码:
```java
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
// 创建 LocalDateTime 对象
LocalDateTime dateTime = LocalDateTime.now();
// 创建格式化器
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
// 转换为字符串
String formattedDateTime = dateTime.format(formatter);
System.out.println(formattedDateTime);
}
}
```
这段代码将 LocalDateTime 对象转换为了形如 "2022-01-01 12:30:45" 的字符串。
阅读全文