JAVA localdatetime去掉t
时间: 2023-12-19 12:18:28 浏览: 102
在Java 8中,你可以使用LocalDateTime类中的format()方法将日期时间格式化为字符串。要去掉日期时间中的"T"字符,可以使用DateTimeFormatter的ofPattern()方法来定义自定义格式,然后将其传递给format()方法。
以下是一个示例代码:
```java
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class DateTimeExample {
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);
}
}
```
输出结果将类似于以下内容:
```
Formatted LocalDateTime: 2021-08-06 15:30:00
```
在这个示例中,我们定义了一个格式化模式,它包括日期和时间,但没有"T"字符。然后,我们使用ofPattern()方法创建一个DateTimeFormatter对象,并将其传递给format()方法,以将LocalDateTime对象格式化为字符串。
阅读全文