JDateChooser setDateFormat在输入数据库时

时间:2015-04-15 06:12:57

标签: java netbeans jdatechooser

ps.setString(26, ((JTextField) Birthday.getDateEditor().getUiComponent()).getText());

这是我的代码如何将日期格式转换为MMM d,yyyy,因为我的JDateChooser的默认格式是yyyy-MM-dd。

1 个答案:

答案 0 :(得分:0)

试试这个:

DateFormat f = new SimpleDateFormat("MMM d, yyyy");
ps.setString(26, f.format(((JTextField) Birthday.getDateEditor().getUiComponent()).getText()));

<强> CORRECTION

DateFormat f = new SimpleDateFormat("MMM d, yyyy");
ps.setString(26, f.format(Birthday.getDate()));