用String类的format方法,将当前日期和时间格式化成“2023年3月21日8点10分33秒形式的字符串,并输出。可以用Calendar获取当前日期和时间。
时间: 2024-04-29 08:22:44 浏览: 26
JS获取当前时间的年月日时分秒及时间的格式化的方法
5星 · 资源好评率100%
以下是Java代码示例:
```java
import java.util.Calendar;
public class Main {
public static void main(String[] args) {
Calendar now = Calendar.getInstance();
int year = now.get(Calendar.YEAR);
int month = now.get(Calendar.MONTH) + 1;
int day = now.get(Calendar.DAY_OF_MONTH);
int hour = now.get(Calendar.HOUR_OF_DAY);
int minute = now.get(Calendar.MINUTE);
int second = now.get(Calendar.SECOND);
String formattedDate = String.format("%d年%d月%d日%d点%d分%d秒", year, month, day, hour, minute, second);
System.out.println(formattedDate);
}
}
```
运行结果:
```
2022年12月28日13点57分43秒
```
阅读全文