我的java应用程序中有一个jFrame,它将所选日期插入数据库。我想验证字段是否为空。
代码是这样的:
if(!this.jtxtDate.getSelectedItem.toString().isEmpty()) {
idc.setDate(this.jtxtDate.getDate);
} else {
JOptionPane.showMessageDialog(rootPane, "pls choose date");
}
答案 0 :(得分:0)
在try block:
中使用此代码if(
((JTextField)jDateChooser1.getDateEditor().getUiComponent()).getText().isEmpty()
) {
JOptionPane.showMessageDialog(this, "Date should be filled");
} else {
//some code
}
答案 1 :(得分:0)
您可以查看是否可以从jDateChooser获取日期。
if(this.jtxtDate.getDate() != null) {
idc.setDate(this.jtxtDate.getDate);
} else {
JOptionPane.showMessageDialog(rootPane, "pls choose date");
}
答案 2 :(得分:0)
dateChooser.setEnabled(false);
dateChooser.getCalendarButton()。setEnabled(true);
因此,您无法编辑集成到JDateChooser的文本字段。