如何在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
}
示例输出:04 Mar 15,我想将月份名称"Mar"更改为"03",但不知道如何更改它。请帮忙
改用 SimpleDataFormat 类
http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
替换此
private DateFormat df = DateFormat.getDateInstance();
有了这个
private SimpleDateFormat df = SimpleDateFormat("dd MM yy");
您可以在此处自定义所需的任何格式