我已經得到日期,但它是靜態的,我想每秒獲取實際日期。我該怎麼做?如何使用日期每秒更新此文本字段
Date fecha=new java.util.Date();
textField = new JTextField(fecha.toLocaleString());
textField.setFont(new Font("Verdana", Font.BOLD, 15));
textField.setHorizontalAlignment(SwingConstants.CENTER);
textField.setBackground(UIManager.getColor("Button.background"));
textField.setBounds(362, 665, 300, 50);
frame.getContentPane().add(textField);
textField.setColumns(10);
線程和while循環? – JClassic
使用擺動定時器 –
我試過把下一個代碼,但不工作 /*定時器t3 =新定時器(); \t t3.schedule(新的TimerTask(){ \t @覆蓋公共無效的run(){ \t \t //下面的代碼我以前交的 \t} \t},0L,1); – marcss