我收到一个错误,它找不到方法getModel(),我不知道该怎么做。我试图使它在单击按钮时,dob变量设置为jdatechooser中的值。
public Calendar getDOB()
{
return dob;
}
JDateChooser jdc = new JDateChooser();
JCalendar jc = new JCalendar();
Calendar calendar;
UtilDateModel model = new UtilDateModel();
model.setDate(1990, 8, 24);
JDatePanelImpl datePanel;
JDatePickerImpl datePicker;
Person samplePerson = new Person();
btnSubmit.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
samplePerson.setDOB(calendar.getModel().getValue());
}
});
答案 0 :(得分:0)
您在Calendar实例(没有getModel方法)而不是JDatePanel实例上调用getModel方法
答案 1 :(得分:0)
没关系!我知道了!以下一行对我有用。
samplePerson.setDOB(jdc.getCalendar());