如何JMonthChooser
从JCalendar
(toedter.com/jcalendar/) 获取字符串中的月份名称并将其转换为字符串“01”、“02”、“03”、...、“12”,就像使用SimpleDateFormat
.
我会尽力 :
String mymonth;
SimpleDateFormat sdfm = new SimpleDateFormat("MM");
JComboBox combom = (JComboBox)jMonthChooser1.getSpinner();
mymonth = sdfm.format(((JTextField)combom.getEditor()).getText());
但没有成功