java 国家法定节假日和双休日判断工具类

package com.date.dateutil;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Date;
import java.util.List;


/**
* @author  qyw
* @description  日期日历工具类
* @date Created in 21:01 2019/1/31
**/
public class ChineseCalendarUtils {

    // 法律规定的放假日期
    // 此处写死了。需要定时入库再读库,政府每年都会在12月份左右公布,无法提前预知
    // todo db数据转list,根据年份读取    
    private List<String> lawHolidays   = Arrays.asList("2017-12-30", "2017-12-31",
            "2018-01-01", "2018-02-15", "2018-02-16", "2018-02-17", "2018-02-18",
            "2018-02-19", "2018-02-20", "2018-02-21", "2018-04-05", "2018-04-06",
            "2018-04-07", "2018-04-29", "2018-04-30", "2018-05-01", "2018-06-16",
            "2018-06-17", "2018-06-18", "2018-09-22", "2018-09-23", "2018-09-24",
            "2018-10-01", "2018-10-02", "2018-10-03", "2018-10-04", "2018-10-05",
            "2018-10-06", "2018-10-07");
    // 由于放假需要额外工作的周末
    // todo db数据转list,根据年份读取
    private List<String> extraWorkdays = Arrays.asList("2018-02-11", "2018-02-24",
            "2018-04-08", "2018-04-28", "2018-09-29", "2018-09-30");

    /**
    * @author  qyw
    * @description  判断是否是法定假日
    * @date Created in 21:03 2019/1/31
    **/
    public boolean isLawHoliday(String calendar) throws Exception {
        ChineseCalendarUtils.isValidDate(calendar);
        if (lawHolidays.contains(calendar)) {
            return true;
        }
        return false;
    }

    /**
    * @author  qyw
    * @description  判断是否是周末
    * @date Created in 21:03 2019/1/31
    **/
    public boolean isWeekends(String calendar) throws Exception {
        ChineseCalendarUtils.isValidDate(calendar);
        // 先将字符串类型的日期转换为Calendar类型
        SimpleDateFormat sdf  = new SimpleDateFormat("yyyy-MM-dd");
        Date             date = sdf.parse(calendar);
        Calendar         ca   = Calendar.getInstance();
        ca.setTime(date);
        if (ca.get(Calendar.DAY_OF_WEEK) == Calendar.SATURDAY
                || ca.get(Calendar.DAY_OF_WEEK) == Calendar.SUNDAY) {
            return true;
        }
        return false;
    }

    /**
    * @author  qyw
    * @description  判断是否是需要额外补班的周末
    * @date Created in 21:06 2019/1/31
    **/
    public boolean isExtraWorkday(String calendar) throws Exception {
        ChineseCalendarUtils.isValidDate(calendar);
        if (extraWorkdays.contains(calendar)) {
            return true;
        }
        return false;
    }

    /**
    * @author  qyw
    * @description  判断是否是休息日(包含法定节假日和不需要补班的周末)
    * @date Created in 21:06 2019/1/31
    **/
    public boolean isHoliday(String calendar) throws Exception {
        ChineseCalendarUtils.isValidDate(calendar);
        // 首先法定节假日必定是休息日
        if (this.isLawHoliday(calendar)) {
            return true;
        }
        // 排除法定节假日外的非周末必定是工作日
        if (!this.isWeekends(calendar)) {
            return false;
        }
        // 所有周末中只有非补班的才是休息日
        if (this.isExtraWorkday(calendar)) {
            return false;
        }
        return true;
    }

    /**
    * @author  qyw
    * @description  校验字符串是否为指定的日期格式,含逻辑严格校验,2007/02/30返回false
    * @date Created in 21:06 2019/1/31
    **/
    private static boolean isValidDate(String str) {
        boolean convertSuccess = true;
        // 指定日期格式为四位年/两位月份/两位日期,注意yyyy-MM-dd区分大小写;
        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
        try {
            // 设置lenient为false.
            // 否则SimpleDateFormat会比较宽松地验证日期,比如2007/02/29会被接受,并转换成2007/03/01
            format.setLenient(false);
            format.parse(str);
        } catch (ParseException e) {
            convertSuccess = false;
        }
        return convertSuccess;
    }


    public static void main(String[] args) throws Exception {
        String               calendar = "2018-01-32";
        ChineseCalendarUtils cc       = new ChineseCalendarUtils();
        System.out.println("输入的calendar是否是指定要求的格式:"+ChineseCalendarUtils.isValidDate(calendar));
        System.out.println("是否是法定节假日:" + cc.isLawHoliday(calendar));
        System.out.println("是否是周末:" + cc.isWeekends(calendar));
        System.out.println("是否是需要额外补班的周末:" + cc.isExtraWorkday(calendar));
        System.out.println("是否是休息日:" + cc.isHoliday(calendar));
    }
}

 

  • 20
    点赞
  • 58
    收藏
    觉得还不错? 一键收藏
  • 12
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 12
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值