setText 就是这样做的,它将字段的“文本”设置为您提供的值,删除所有以前的内容。
你想要的是JTextArea#append
如果您使用的是 Java 8,另一个选项可能是 StringJoiner
StringJoiner joiner = new StringJoiner(", ");
for (int i = 0; i < 10; i++) {
joiner.add("QUang " + i);
}
jTextArea1.setTexy(joiner.toString());
(假设你想在每次调用actionPerformed方法时替换文本,但你仍然可以使用append)
根据围绕 cmets 的假设进行更新
我“假设”您的意思是您希望每个 String 显示一小段时间,然后替换为下一个 String。
Swing 是一个单线程环境,所以任何阻塞事件调度线程的东西,比如循环,都会阻止 UI 更新。相反,您需要使用 Swing Timer 来安排定期回调,并在每次滴答时更改 UI。
import java.awt.BorderLayout;
import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.Timer;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
public class Test {
public static void main(String[] args) {
new Test();
}
public Test() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
}
JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
public class TestPane extends JPanel {
private String[] messages = {
"Example 1",
"Example 2",
"Example 3",
"Example 4",
"Example 5",
"Example 6",
"Example 7",
"Example 8",
"Example 9",
};
private JTextArea ta;
private int index;
private Timer timer;
public TestPane() {
setLayout(new BorderLayout());
ta = new JTextArea(1, 20);
add(new JScrollPane(ta));
JButton btn = new JButton("Start");
btn.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (timer.isRunning()) {
timer.stop();
}
index = 0;
timer.start();
}
});
add(btn, BorderLayout.SOUTH);
timer = new Timer(500, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (index < messages.length) {
ta.setText(messages[index]);
} else {
timer.stop();
}
index++;
}
});
}
}
}
查看Concurrency in Swing 和How to use Swing Timers 了解更多详情