java 中 怎么获取"yyyy-MM-dd HH:mm:ss"格式化后的时间值
时间: 2024-03-09 15:44:42 浏览: 61
JS获取当前时间的年月日时分秒及时间的格式化的方法
5星 · 资源好评率100%
可以使用Java的SimpleDateFormat类来将日期格式化为指定的字符串格式。下面是一个示例代码,可以获取当前时间并将其格式化为"yyyy-MM-dd HH:mm:ss"格式的字符串:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String[] args) {
// 创建SimpleDateFormat对象,指定日期格式
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// 获取当前时间
Date now = new Date();
// 将当前时间格式化为指定格式的字符串
String formattedDate = sdf.format(now);
// 输出格式化后的时间字符串
System.out.println(formattedDate);
}
}
```
输出结果类似于:2021-07-07 14:30:00
阅读全文