とが付いたフレームがJTextField
あり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);
}
}
});
}
}