我有这个代码:
class ClockLabel extends JLabel implements ActionListener {
public ClockLabel() {
super("" + new java.util.Date());
Timer t = new Timer(1000, this);
t.start();
}
@Override
public void actionPerformed(ActionEvent ae) {
txtclock.setText((new java.util.Date()).toString());
}
}
我的输出是
Wed Feb 06 14:22:44 CST 2013
如何以这种格式更改我的输出
"MM dd yyyy HH:mm:ss"