嗨,我在运行程序时收到 Nullpointer 错误。我在这个网站上发现了一篇帖子,我认为它可以解决来自 JCalander Combobox 的 Null Pointer Exception问题我使用了此页面中的建议,但仍然收到错误消息。有人可以告诉我哪里出错了吗?
String end;
if (jTimeButton3 != null) {
SimpleDateFormat dateFormatTime2 = new SimpleDateFormat("hh:mm a");
end = dateFormatTime2.format(jTimeButton3.getTargetDate());
endTime.setText(end);
} else {
JOptionPane.showMessageDialog(
null, "Please select a End Time.");
return;
}