我正在尝试在单击按钮时显示文本字段上的实际系统时间显示。到目前为止,它只显示每次单击按钮时的实时结果。我正在努力将ActionListener附加到其中,以便时间可以不断自我更新。
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
Date time = new Date();
dateFormat.format(time);
ActualTime.setText(dateFormat.format(time));
Calendar cal = Calendar.getInstance();
ActualTime.setText(dateFormat.format(cal.getTime()));
}
答案 0 :(得分:3)
感谢您对问题的修改。
start()
即可。