SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd");获取当前时间格式yyyy-MM-dd
时间: 2024-02-05 20:09:47 浏览: 122
简易获取现在日期时间
以下是获取当前时间格式为yyyy-MM-dd的示例代码:
```java
SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd");
String currentDate = outputFormat.format(new Date());
System.out.println("Current date: " + currentDate);
```
这段代码使用了SimpleDateFormat类来定义输出的日期格式为"yyyy-MM-dd",然后通过format方法将当前日期转换为指定格式的字符串。最后,使用println方法将结果打印出来。
阅读全文