JAVA SWT DateTime限制最大值

时间:2013-08-22 07:56:00

标签: java datetime swt

我在我的Shell小部件类型DateTime中,我想限制,用户不能选择比实际日期更高的日期。

我搜索但没有像setMaximum();

这样的方法

有人知道如何实现吗?

2 个答案:

答案 0 :(得分:4)

没有内置方法可以做到这一点,但你可以自己解决:

private static Date maxDate;
private static SimpleDateFormat format = new SimpleDateFormat("dd/MM/yyyy");

public static void main(String[] args)
{
    Display display = Display.getDefault();
    final Shell shell = new Shell(display);
    shell.setText("StackOverflow");
    shell.setLayout(new GridLayout(1, true));

    /* Set the maximum */
    Calendar cal = Calendar.getInstance();
    cal.set(2014, 0, 0);
    maxDate = cal.getTime();

    final DateTime date = new DateTime(shell, SWT.DATE | SWT.DROP_DOWN);

    /* Listen for selection events */
    date.addListener(SWT.Selection, new Listener()
    {
        @Override
        public void handleEvent(Event arg0)
        {
            /* Get the selection */
            int day = date.getDay();
            int month = date.getMonth() + 1;
            int year = date.getYear();

            System.out.println(day + "/" + month + "/" + year);

            /* Parse the selection */
            Date newDate = null;
            try
            {
                newDate = format.parse(day + "/" + month + "/" + year);
            }
            catch (ParseException e)
            {
                return;
            }

            System.out.println(newDate);

            /* Compare it to the maximum */
            if(newDate.after(maxDate))
            {
                /* Set to the maximum */
                Calendar cal = Calendar.getInstance();
                cal.setTime(maxDate);
                date.setMonth(cal.get(Calendar.MONTH));
                date.setDay(cal.get(Calendar.DAY_OF_MONTH));
                date.setYear(cal.get(Calendar.YEAR));
            }
        }
    });

    shell.pack();
    shell.open();
    while (!shell.isDisposed())
    {
        if (!display.readAndDispatch())
            display.sleep();
    }
    display.dispose();
}

答案 1 :(得分:2)

实际上,我没有找到修正SWT中日期时间限制的方法。

我认为您必须将当前日期保存在变量中。之后,您可以使用侦听器和getter方法来了解用户选择的日期。要完成,您可以执行自己的控制方法,并在出现问题时显示弹出窗口。 (这是我的观点 - >我在我的旧申请中这样做了)