ps.setString(26, ((JTextField) Birthday.getDateEditor().getUiComponent()).getText());
这是我的代码如何将日期格式转换为MMM d,yyyy,因为我的JDateChooser的默认格式是yyyy-MM-dd。
试试这个:
DateFormat f = new SimpleDateFormat("MMM d, yyyy");
ps.setString(26, f.format(((JTextField) Birthday.getDateEditor().getUiComponent()).getText()));
校正
DateFormat f = new SimpleDateFormat("MMM d, yyyy");
ps.setString(26, f.format(Birthday.getDate()));