時計の秒数が増えていないのはなぜですか?
public class timeTest extends javax.swing.JFrame {
public timeTest() {
initComponents();
showTime();
}
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new timeTest().setVisible(true);
}
});
}
private javax.swing.JLabel timeLable;
private void showTime() {
Timer timer = new Timer(100, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
Calendar time = Calendar.getInstance();
timeLable.setText(time.getTime().toString());
}
});
timer.setRepeats(false);
timer.start();
}
}
私はコードを書いていません。IDE によって生成されたものです。