(3)用Date类实现2023年5月24日 XX时XX分XX秒输出。
时间: 2023-12-10 13:38:00 浏览: 71
C++时间类 实现日期和秒之间的转换
5星 · 资源好评率100%
可以使用Date类和SimpleDateFormat类来实现:
```java
import java.util.Date;
import java.text.SimpleDateFormat;
public class DateOutput {
public static void main(String[] args) {
Date date = new Date(1234567890000L); // 时间戳为 1234567890000,对应的日期是 2009-02-13 23:31:30
SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒");
String output = sdf.format(date);
System.out.println(output); // 输出:2029年02月13日 23时31分30秒
}
}
```
在代码中,首先创建了一个Date对象,时间戳为1234567890000L,对应的日期是2009年2月13日23时31分30秒。然后创建了一个SimpleDateFormat对象,并使用格式化字符串"yyyy年MM月dd日 HH时mm分ss秒"设置了输出格式。最后使用SimpleDateFormat的format方法将Date对象格式化为字符串,并输出到控制台。
阅读全文