我有一个带有 aJTextField
和 a的框架JButton
。当我按下时,我想调用一个方法,该方法每 4/5/8 秒更新一次 JTextField 的文本。谁能帮我写代码??(谢谢你)
The code:
import javax.swing.*;
public class Gui{
JFrame frame = new JFrame();
public Gui(){
frame.setLayout(new FlowLayout());
JTextField tf = new JTextField(10);
JButton bu = new JButton("Button");
bu.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent event){
for(int i=0;;i++){
tf.setText("" + i);
}
}
});
}
}