java和js根据年月 获取对应月最大天数

2 篇文章 0 订阅
本文介绍了在Java和JavaScript中如何根据年月来获取对应月份的最大天数,提供了具体的工作中使用的代码示例。
摘要由CSDN通过智能技术生成

分享工作上用到的,根据年月获取月份!

Java获取方式 :

public static void main(String[] args) throws IOException, InterruptedException, JSONException {
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
        // 根据年,月获取最大天数的第一种方法
        // 例如获取2月最大天数,传递月份时,应为3月 通过3月1的前一天来获取最大天数
        Calendar calDate = Calendar.getInstance();
        calDate.set(Calendar.YEAR, 2020);
        calDate.set(Calendar.MONTH, 2);
        calDate.set(Calendar.DATE, 0);
        // 三月1号的前一天即2月份最大天数
        int maxDate = calDate.get(Calendar.DATE);
        calDate.set(calDate.get(Calendar.YEAR), calDate.get(Calendar.MONTH), maxDate);

        // 根据年,月获取最大天数的第二种方法
        // 例如获取2月最大天数,传递月份时,应为2月 通过getActualMaximum()方法获取最大天数
        Calendar calDate1 = Calendar.getInstance();
        calDate1.set(Calendar.YEAR, 2020);
        calDate1.set(Calendar.MONTH, 1);
        // 2月最大天数
        int MaxDay = calDate1.getActualMaximum(Calendar.DAY_OF_MONTH);
        calDate1.set(calDate1.get(Calendar.YEAR), calDate1.get(Calendar.MONTH), MaxDay);

        // 格式化日期
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        // 输出 2020-02-29
        System.out.println(sdf.format(calDate.getTime()));
        // 输出 2020-02-29
        System.out.println(sdf.format(calDate1.getTime()));
    }

Js获取方式:

    var year = 2020;
    var month = 2;
    // 通过年份,月份获取本月最大天数
    var day = new Date(year, month, 0).getDate();
    // 本月最大日期  最小日期
    var maxDate = year + "-" + month + "-" + day;
    var minDate = year + "-" + month + "-" + "01";
    // 预输出  2020-02-01
    console.log(minDate)
    // 预输出  2020-02-29
    console.log(maxDate)

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值