JDateChooser setDateFormat 同时输入到数据库中


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()));

相关内容

  • 没有找到相关文章

最新更新