Springboot 将给定的年月日时分秒日期转换为年月日时分秒格式
时间: 2023-04-02 22:00:43 浏览: 254
时间戳转年月日时分秒
Springboot 可以使用 SimpleDateFormat 类将给定的年月日时分秒日期转换为年月日时分秒格式。具体代码如下:
```java
String dateString = "2021-08-31 12:30:45";
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = dateFormat.parse(dateString);
String formattedDate = dateFormat.format(date);
System.out.println(formattedDate);
```
输出结果为:2021-08-31 12:30:45。
阅读全文