加载中...

时间显示

时间显示 - 蓝桥云课 (lanqiao.cn)

时间格式化:

值为从 19701970 年 11 月 11 日 00:00:0000:00:00 到当前时刻经过的毫秒数。

public class N1452 {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		long d = scanner.nextLong();
		Date date = new Date(d);
		SimpleDateFormat sf = new SimpleDateFormat("HH:mm:ss");// 设置格式化的格式
		System.out.println(sf.format(date));// 格式化后输出
	}
}

posted @ 2023-04-05 21:26  ChuenSan  阅读(353)  评论(0编辑  收藏  举报