我有一个带有JCalendar的简单 Java 程序。我需要知道我的 JCalendarcalendario
是否为空,这意味着用户是否选择了日期。我正在考虑一种方法,calendario.isEmpty
但它不存在。也许我可以比较calendario
,null
但它没有用。我正在使用com.toedter.calendar.JDateChooser
.
问问题
4767 次
2 回答
4
如果您正在使用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);
}
}
于 2014-03-24T17:29:43.503 回答
1
你也可以试试这个
if(jDateChooser1.getDate()==null){
JOptionPane.showMessageDialog(this, "Date not selected");
}
于 2017-04-26T01:54:30.957 回答