how to change month format in jDateChooser ? this is my code :
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
}
example output : 04 Mar 15, and I want to change Month name "Mar" to "03", but don't know how to change it. Please help