java 获取当前时间 格式yyyy-MM
时间: 2023-06-28 20:11:40 浏览: 101
-dd HH:mm:ss:
可以使用Java中的SimpleDateFormat类来获取当前时间并按照指定的格式进行格式化。具体代码如下:
```
import java.text.SimpleDateFormat;
import java.util.Date;
public class GetCurrentTime {
public static void main(String[] args) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String currentTime = sdf.format(new Date());
System.out.println("当前时间为:" + currentTime);
}
}
```
输出结果为:当前时间为:2022-05-12 11:16:25。其中,"yyyy-MM-dd HH:mm:ss"表示时间格式,具体含义如下:
- yyyy:年份,如2022;
- MM:月份,如05;
- dd:日期,如12;
- HH:小时,24小时制,如11;
- mm:分钟,如16;
- ss:秒钟,如25。
相关问题
java获取当前时间转yyyy-mm-dd
在Java中,你可以使用`java.time.LocalDate`类以及其相关的API来获取并格式化当前日期为"yyyy-MM-dd"的形式。以下是一个简单的示例:
```java
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
// 获取当前日期
LocalDate currentDate = LocalDate.now();
// 定义日期格式化字符串
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
// 将日期格式化为指定格式
String formattedDate = currentDate.format(formatter);
System.out.println("当前日期:", formattedDate);
}
}
```
当你运行这个程序,它会打印出当前日期,格式为"yyyyMMdd"。如果你想获得具体的日期结果,可以替换到`System.out.println`后面的字符串里。
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("Current date: " + currentDate);
```
这段代码使用了SimpleDateFormat类来定义输出的日期格式为"yyyy-MM-dd",然后通过format方法将当前日期转换为指定格式的字符串。最后,使用println方法将结果打印出来。
阅读全文