国庆倒计时

创建一个国庆节2022年10月1日的日期对象gdDate

gdDate获取从1970年过了多少毫秒数

创建一个当前日期对象nowDate

nowDate获取从1970年过滤多少毫秒数 gdDate的毫秒数-nowDate的毫秒数,得到毫秒差

把毫秒数转为:xx天xx小时xx分钟xx秒

sout打印输出拼接好的倒计时

public static void main(String[] args) throws ParseException, InterruptedException {
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        Date gdDate = sdf.parse("2022-10-1");
        Calendar c = Calendar.getInstance();
        c.setTime(gdDate);
        long gdMillis = c.getTimeInMillis();
        while (true){
            Date nowDate = new Date();
            c.setTime(nowDate);
            long nowMillis = c.getTimeInMillis();
            long millis = gdMillis - nowMillis; //毫秒差
            long s = millis / 1000;
            int day = (int) s / 3600 / 24;  //天
            int min =(int) s % 3600 / 60 + 1;   //分
            int ss = (int) s % 3600 % 60 + 1;   //秒

            System.out.println("距离国庆还有" + day + "天" + min + "分" + ss + "秒");
            Thread.sleep(1000);
            if (millis <= 0)
                break;
        }
    }

运行截图

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值