私は2つのクラスを持っています。メインクラス:
public class TestJTA {
public static JTextArea text;
public static void main(String [] args) {
Runnable r = new Runnable() {
public void run() {
createGUI();
}
} ;
javax.swing.SwingUtilities.invokeLater(r);
}
public static void createGUI() throws IOException {
JFrame j = new JFrame("C5er");
j.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
ActionListener al = new ActionListener() {
@SuppressWarnings("deprecation")
public void actionPerformed (ActionEvent e ) {
try {
PrintToJTA.startPrinting();
} catch (Exception ex) {}
}
}
;
j.setLayout(null);
text = new JTextArea();
JScrollPane scroll = new JScrollPane(text);
scroll.setBounds(280,30,200,100);
j.add(scroll);
JButton b = new JButton("Start");
b.setBounds(100,20,80,30);
b.addActionListener(al);
j.add(b);
j.setSize(600,250);
j.setVisible(true);
j.setLocationRelativeTo(null);
j.getContentPane().setBackground(Color.white);
}
}
二次クラスは次のとおりです。
public class PrintToJTA {
public static void startPrinting () throws InterruptedException {
for (int i = 0; i < 10 ; i++) {
TestJTA.text.append("hello\n");
Thread.sleep(300);
}
}
}
開始をクリックすると、textArea FREEZES ...そしてクリックできなくなります...そしてしばらくしてから出力が得られます。JTextArea をいつでもクリック可能、編集可能にし、出力をすぐにフラッシュできるようにするにはどうすればよいですか? Thread.sleep
待機中にクリックできるようにする必要があります