zoukankan      html  css  js  c++  java
  • 判断某个时间点在一个时间段内方法汇总

    方法一

     /**
         * @param strDate      需要判断的时间
         * @param strDateBegin 开始时间
         * @param strDateEnd   结束时间
         * @return
         */
        public boolean isInDates(String strDate, String strDateBegin, String strDateEnd) {
            SimpleDateFormat sd = new SimpleDateFormat("HH:mm:ss");
            Date myDate = null;
            Date dateBegin = null;
            Date dateEnd = null;
            try {
                myDate = sd.parse(strDate);
                dateBegin = sd.parse(strDateBegin);
                dateEnd = sd.parse(strDateEnd);
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            strDate = String.valueOf(myDate);
            strDateBegin = String.valueOf(dateBegin);
            strDateEnd = String.valueOf(dateEnd);
    
            int strDateH = Integer.parseInt(strDate.substring(11, 13));
            int strDateM = Integer.parseInt(strDate.substring(14, 16));
            int strDateS = Integer.parseInt(strDate.substring(17, 19));
    
            int strDateBeginH = Integer.parseInt(strDateBegin.substring(11, 13));
            int strDateBeginM = Integer.parseInt(strDateBegin.substring(14, 16));
            int strDateBeginS = Integer.parseInt(strDateBegin.substring(17, 19));
    
            int strDateEndH = Integer.parseInt(strDateEnd.substring(11, 13));
            int strDateEndM = Integer.parseInt(strDateEnd.substring(14, 16));
            int strDateEndS = Integer.parseInt(strDateEnd.substring(17, 19));
    
            if ((strDateH >= strDateBeginH && strDateH <= strDateEndH)) {
                if (strDateH > strDateBeginH && strDateH < strDateEndH) {
                    return true;
                } else if (strDateH == strDateBeginH && strDateM > strDateBeginM && strDateH < strDateEndH) {
                    return true;
                } else if (strDateH == strDateBeginH && strDateM == strDateBeginM && strDateS > strDateBeginS && strDateH < strDateEndH) {
                    return true;
                } else if (strDateH == strDateBeginH && strDateM == strDateBeginM && strDateS == strDateBeginS && strDateH < strDateEndH) {
                    return true;
                } else if (strDateH > strDateBeginH && strDateH == strDateEndH && strDateM < strDateEndM) {
                    return true;
                } else if (strDateH > strDateBeginH && strDateH == strDateEndH && strDateM == strDateEndM && strDateS < strDateEndS) {
                    return true;
                } else if (strDateH > strDateBeginH && strDateH == strDateEndH && strDateM == strDateEndM && strDateS == strDateEndS) {
                    return true;
                } else {
                    return false;
                }
            } else {
                return false;
            }
        }

    方法二

                         //需要判断的时间
                        Calendar date = Calendar.getInstance();
                        date.setTime(判断的时间);
                        //开始时间
                        Calendar begin = Calendar.getInstance();
                        begin.setTime(开始时间);
                        //结束时间
                        Calendar end = Calendar.getInstance();
                        end.setTime(结束时间);
                        boolean flag = date.after(begin) && date.before(end);             
  • 相关阅读:
    U盘 格式化 ext3 ext4
    MBR
    CentOS开机的时候卡在进度条一直进不去 F5(是关键)
    redis储存中文,客服端读取出现乱码
    redis 做为缓存服务器 注项!
    redis监控
    keepalived virtual_router_id 44
    你真的会用Gson吗?Gson使用指南
    你真的会用Retrofit2吗?Retrofit2完全教程
    Kotlin 初级读本
  • 原文地址:https://www.cnblogs.com/ymxl/p/13322641.html
Copyright © 2011-2022 走看看