gpt4 book ai didi

java - 如何知道 JCalendar 是否为空?

转载 作者:行者123 更新时间:2023-12-01 17:15:00 29 4
gpt4 key购买 nike

我有一个带有 JCalendar 的简单 Java 程序。我需要知道我的 JCalendar calendario 是否为空,这意味着用户是否选择了日期。我正在考虑像 calendario.isEmpty 这样的方法,但它不存在。也许我可以将 calendarionull 进行比较,但它不起作用。我正在使用 com.toedter.calendar.JDateChooser 。

最佳答案

如果您使用com.toedter.calendar.JDateChooser,最好的方法是调用实例方法getDate()检查返回的日期。如果返回的日期为null,则表示用户尚未选择日期。例如:

public class TestCalendar extends JFrame implements ActionListener {

private JDateChooser dateChooser;

public TestCalendar() {
super("Simple");
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
setLayout(new FlowLayout());
dateChooser = new JDateChooser();
add(dateChooser);
JButton button = new JButton("Check");
button.addActionListener(this);
add(button);
setSize(300, 100);
}

public void actionPerformed(ActionEvent e) {
Date date = dateChooser.getDate();
if (date == null) {
JOptionPane.showMessageDialog(TestCalendar.this, "Date is required.");
}
}

public static void main(String[] args) {
new TestCalendar().setVisible(true);
}

}

关于java - 如何知道 JCalendar 是否为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22615461/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com