cron测试验证类

两个类

1

package cron;

import java.text.SimpleDateFormat;
import java.util.Date;


public class CronTest {
    public static void main(String[] args) {
        cronTest();
    }

 
    private static void cronTest() {
        try {
//            CronExpression exp = new CronExpression("0 0/1 * * * ?");//
            /**
             * 排除周六
             */
//            CronExpression exp = new CronExpression("*/30 * * ? * SUN,MON,TUE,WED,THU,FRI");
            /**
             * 
             */
//            CronExpression exp = new CronExpression("*/30 * 0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 ? * SAT");
//            CronExpression exp = new CronExpression("0/30 * 3-0 ? * 7");//("*/30 * 3-0 ? * 7");
//            CronExpression exp = new CronExpression("0 0/3 3-0 ? * 1-6");//("0 0 0 */1 * ?");//
//            CronExpression exp = new CronExpression("30 0/1 * * * ?");
            CronExpression exp = new CronExpression("30 */1 3-0 * * ?");
            SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
            Date d = new Date();
            int i = 0;
            // 循环得到接下来n此的触发时间点,供验证
            while (i < 100) {
                d = exp.getNextValidTimeAfter(d);
                System.out.println(df.format(d));
                ++i;
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}
2

package cron;

import java.io.Serializable;
import java.text.ParseException;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Locale;
import java.util.Map;
import java.util.SortedSet;
import java.util.StringTokenizer;
import java.util.TimeZone;
import java.util.TreeSet;

/**
 * Provides a parser and evaluator for unix-like cron expressions. Cron expressions provide the ability to specify
 * complex time combinations such as &quot;At 8:00am every Monday through Friday&quot; or &quot;At 1:30am every last
 * Friday of the month&quot;.
 * <P>
 * Cron expressions are comprised of 6 required fields and one optional field separated by white space. The fields
 * respectively are described as follows:
 *
 * <table cellspacing="8">
 * <tr>
 * <th align="left">Field Name</th>
 * <th align="left">&nbsp;</th>
 * <th align="left">Allowed Values</th>
 * <th align="left">&nbsp;</th>
 * <th align="left">Allowed Special Characters</th>
 * </tr>
 * <tr>
 * <td align="left"><code>Seconds</code></td>
 * <td align="left">&nbsp;</th>
 * <td align="left"><code>0-59</code></td>
 * <td align="left">&nbsp;</th>
 * <td align="left"><code>, - * /</code></td>
 * </tr>
 * <tr>
 * <td align="left"><code>Minutes</code></td>
 * <td align="left">&nbsp;</th>
 * <td align="left"><code>0-59</code></td>
 * <td align="left">&nbsp;</th>
 * <td align="left"><code>, - * /</code></td>
 * </tr>
 * <tr>
 * <td align="left"><code>Hours</code></td>
 * <td align="left">&nbsp;</th>
 * <td align="left"><code>0-23</code></td>
 * <td align="left">&nbsp;</th>
 * <td align="left"><code>, - * /</code></td>
 * </tr>
 * <tr>
 * <td align="left"><code>Day-of-month</code></td>
 * <td align="left">&nbsp;</th>
 * <td align="left"><code>1-31</code></td>
 * <td align="left">&nbsp;</th>
 * <td align="left"><code>, - * ? / L W</code></td>
 * </tr>
 * <tr>
 * <td align="left"><code>Month</code></td>
 * <td align="left">&nbsp;</th>
 * <td align="left"><code>1-12 or JAN-DEC</code></td>
 * <td align="left">&nbsp;</th>
 * <td align="left"><code>, - * /</code></td>
 * </tr>
 * <tr>
 * <td align="left"><code>Day-of-Week</code></td>
 * <td align="left">&nbsp;</th>
 * <td align="left"><code>1-7 or SUN-SAT</code></td>
 * <td align="left">&nbsp;</th>
 * <td align="left"><code>, - * ? / L #</code></td>
 * </tr>
 * <tr>
 * <td align="left"><code>Year (Optional)</code></td>
 * <td align="left">&nbsp;</th>
 * <td align="left"><code>empty, 1970-2199</code></td>
 * <td align="left">&nbsp;</th>
 * <td align="left"><code>, - * /</code></td>
 * </tr>
 * </table>
 * <P>
 * The '*' character is used to specify all values. For example, &quot;*&quot; in the minute field means &quot;every
 * minute&quot;.
 * <P>
 * The '?' character is allowed for the day-of-month and day-of-week fields. It is used to specify 'no specific value'.
 * This is useful when you need to specify something in one of the two fields, but not the other.
 * <P>
 * The '-' character is used to specify ranges For example &quot;10-12&quot; in the hour field means &quot;the hours 10,
 * 11 and 12&quot;.
 * <P>
 * The ',' character is used to specify additional values. For example &quot;MON,WED,FRI&quot; in the day-of-week field
 * means &quot;the days Monday, Wednesday, and Friday&quot;.
 * <P>
 * The '/' character is used to specify increments. For example &quot;0/15&quot; in the seconds field means &quot;the
 * seconds 0, 15, 30, and 45&quot;. And &quot;5/15&quot; in the seconds field means &quot;the seconds 5, 20, 35, and
 * 50&quot;. Specifying '*' before the '/' is equivalent to specifying 0 is the value to start with. Essentially, for
 * each field in the expression, there is a set of numbers that can be turned on or off. For seconds and minutes, the
 * numbers range from 0 to 59. For hours 0 to 23, for days of the month 0 to 31, and for months 1 to 12. The
 * &quot;/&quot; character simply helps you turn on every &quot;nth&quot; value in the given set. Thus &quot;7/6&quot;
 * in the month field only turns on month &quot;7&quot;, it does NOT mean every 6th month, please note that subtlety.
 * <P>
 * The 'L' character is allowed for the day-of-month and day-of-week fields. This character is short-hand for
 * &quot;last&quot;, but it has different meaning in each of the two fields. For example, the value &quot;L&quot; in the
 * day-of-month field means &quot;the last day of the month&quot; - day 31 for January, day 28 for February on non-leap
 * years. If used in the day-of-week field by itself, it simply means &quot;7&quot; or &quot;SAT&quot;. But if used in
 * the day-of-week field after another value, it means &quot;the last xxx day of the month&quot; - for example
 * &quot;6L&quot; means &quot;the last friday of the month&quot;. When using the 'L' option, it is important not to
 * specify lists, or ranges of values, as you'll get confusing results.
 * <P>
 * The 'W' character is allowed for the day-of-month field. This character is used to specify the weekday
 * (Monday-Friday) nearest the given day. As an example, if you were to specify &quot;15W&quot; as the value for the
 * day-of-month field, the meaning is: &quot;the nearest weekday to the 15th of the month&quot;. So if the 15th is a
 * Saturday, the trigger will fire on Friday the 14th. If the 15th is a Sunday, the trigger will fire on Monday the
 * 16th. If the 15th is a Tuesday, then it will fire on Tuesday the 15th. However if you specify &quot;1W&quot; as the
 * value for day-of-month, and the 1st is a Saturday, the trigger will fire on Monday the 3rd, as it will not 'jump'
 * over the boundary of a month's days. The 'W' character can only be specified when the day-of-month is a single day,
 * not a range or list of days.
 * <P>
 * The 'L' and 'W' characters can also be combined for the day-of-month expression to yield 'LW', which translates to
 * &quot;last weekday of the month&quot;.
 * <P>
 * The '#' character is allowed for the day-of-week field. This character is used to specify &quot;the nth&quot; XXX day
 * of the month. For example, the value of &quot;6#3&quot; in the day-of-week field means the third Friday of the month
 * (day 6 = Friday and &quot;#3&quot; = the 3rd one in the month). Other examples: &quot;2#1&quot; = the first Monday of
 * the month and &quot;4#5&quot; = the fifth Wednesday of the month. Note that if you specify &quot;#5&quot; and there
 * is not 5 of the given day-of-week in the month, then no firing will occur that month. If the '#' character is used,
 * there can only be one expression in the day-of-week field (&quot;3#1,6#3&quot; is not valid, since there are two
 * expressions).
 * <P>
 * <!--The 'C' character is allowed for the day-of-month and day-of-week fields. This character is short-hand for
 * "calendar". This means values are calculated against the associated calendar, if any. If no calendar is associated,
 * then it is equivalent to having an all-inclusive calendar. A value of "5C" in the day-of-month field means "the first
 * day included by the calendar on or after the 5th". A value of "1C" in the day-of-week field means "the first day
 * included by the calendar on or after Sunday".-->
 * <P>
 * The legal characters and the names of months and days of the week are not case sensitive.
 *
 * <p>
 * <b>NOTES:</b>
 * <ul>
 * <li>Support for specifying both a day-of-week and a day-of-month value is not
 * complete (you'll need to use the '?' character in one of these fields).</li>
 * <li>Overflowing ranges is supported - that is, having a larger number on the
 * left hand side than the right. You might do 22-2 to catch 10 o'clock at night until 2 o'clock in the morning, or you
 * might have NOV-FEB. It is very important to note that overuse of overflowing ranges creates ranges that don't make
 * sense and no effort has been made to determine which interpretation CronExpression chooses. An example would be "0 0
 * 14-6 ? * FRI-MON".</li>
 * </ul>
 * </p>
 *
 * @author Sharada Jambula, James House
 * @author Contributions from Mads Henderson
 * @author Refactoring from CronTrigger to CronExpression by Aaron Craven
 */
@SuppressWarnings({"rawtypes", "unchecked"})
public class CronExpression implements Serializable, Cloneable {

    private static final long serialVersionUID = 12423409423L;

    protected static final int SECOND = 0;
    protected static final int MINUTE = 1;
    protected static final int HOUR = 2;
    protected static final int DAY_OF_MONTH = 3;
    protected static final int MONTH = 4;
    protected static final int DAY_OF_WEEK = 5;
    protected static final int YEAR = 6;
    protected static final int ALL_SPEC_INT = 99; // '*'
    protected static final int NO_SPEC_INT = 98; // '?'
    protected static final Integer ALL_SPEC = new Integer(ALL_SPEC_INT);
    protected static final Integer NO_SPEC = new Integer(NO_SPEC_INT);

    protected static final Map monthMap = new HashMap(20);
    protected static final Map dayMap = new HashMap(60);

    protected static final int CronTrigger_YEAR_TO_GIVEUP_SCHEDULING_AT = 2299;

    static {
        monthMap.put("JAN", new Integer(0));
        monthMap.put("FEB", new Integer(1));
        monthMap.put("MAR", new Integer(2));
        monthMap.put("APR", new Integer(3));
        monthMap.put("MAY", new Integer(4));
        monthMap.put("JUN", new Integer(5));
        monthMap.put("JUL", new Integer(6));
        monthMap.put("AUG", new Integer(7));
        monthMap.put("SEP", new Integer(8));
        monthMap.put("OCT", new Integer(9));
        monthMap.put("NOV", new Integer(10));
        monthMap.put("DEC", new Integer(11));

        dayMap.put("SUN", new Integer(1));
        dayMap.put("MON", new Integer(2));
        dayMap.put("TUE", new Integer(3));
        dayMap.put("WED", new Integer(4));
        dayMap.put("THU", new Integer(5));
        dayMap.put("FRI", new Integer(6));
        dayMap.put("SAT", new Integer(7));
    }

    private String cronExpression = null;
    private TimeZone timeZone = null;
    protected transient TreeSet seconds;
    protected transient TreeSet minutes;
    protected transient TreeSet hours;
    protected transient TreeSet daysOfMonth;
    protected transient TreeSet months;
    protected transient TreeSet daysOfWeek;
    protected transient TreeSet years;
    protected transient MonLdaySet monLdaySet;

    protected transient boolean lastdayOfWeek = false;
    protected transient int nthdayOfWeek = 0;
    protected transient boolean lastdayOfMonth = false;
    protected transient boolean nearestWeekday = false;
    protected transient boolean expressionParsed = false;

    /**
     * Constructs a new <CODE>CronExpression</CODE> based on the specified parameter.
     *
     * @param cronExpression String representation of the cron expression the new object should represent
     * @throws java.text.ParseException if the string expression cannot be parsed into a valid
     * <CODE>CronExpression</CODE>
     */
    public CronExpression(St

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值