SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd");获取当前时间格式yyyy-MM-dd
时间: 2024-02-05 07:09:47 浏览: 117
以下是获取当前时间格式为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方法将结果打印出来。
相关问题
SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd");获取当前时间格式 date yyyy-MM-dd
以下是获取当前时间格式为"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()`方法将结果打印出来。
请注意,这段代码中的`new Date()`表示获取当前日期和时间。如果你只想获取当前日期,可以使用`Calendar`类或者`LocalDate`类来实现。
SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd");获取当前时间"yyyy-MM-dd"格式时间
以下是获取当前时间"yyyy-MM-dd"格式时间的示例代码:
```java
SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd");
String currentDate = outputFormat.format(new Date());
System.out.println(currentDate);
```
这段代码使用了SimpleDateFormat类来定义输出的时间格式为"yyyy-MM-dd",然后通过调用format方法将当前时间转换为指定格式的字符串。最后,将结果打印出来。
阅读全文