如何更改 jDateChooser 中的月份格式?这是我的代码:
private DateFormat df = DateFormat.getDateInstance();
private void jButtonInsertActionPerformed(java.awt.event.ActionEvent evt) {
String x = df.format(jDateChooser.getDate());
showtable(x); // this method for showing Date to jTable
}
示例输出:2015 年 3 月 4 日,我想将月份名称“Mar”更改为“03”,但不知道如何更改。请帮忙