java 当前时间的yyyymmddhhmmss日期格式怎么写
时间: 2023-10-13 08:12:00 浏览: 93
java得到当前日期时间
在 Java 中,你可以使用 java.time 包中的 LocalDateTime 类来获取当前时间,并使用 DateTimeFormatter 类将其格式化为yyyymmddhhmmss的形式。以下是一个示例代码:
```
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class CurrentDateTime {
public static void main(String[] args) {
LocalDateTime now = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMddHHmmss");
String formattedDate = now.format(formatter);
System.out.println(formattedDate);
}
}
```
这段代码中,我们使用 LocalDateTime 类获取当前时间,并使用 ofPattern() 方法创建一个 DateTimeFormatter 对象,该对象的格式为yyyymmddhhmmss。然后,我们使用 LocalDateTime 对象的 format() 方法将其格式化为指定的格式,并将结果打印输出。
阅读全文