在下面的代码中,我希望在应用程序加载数据时清除 TextArea。我还添加了一个 repaint() 但它仍然没有被清除。我是否必须以不同的方式通知它才能强制重绘?
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event) {
textArea.setText("");
textArea.repaint();
String result = //call a REST API
textArea.setText(result);
}
});