我有一个Java应用程序,它使用Swing图形,该图形具有2D文本字段数组,每个文本字段都在整个应用程序中正确更新其文本。每次更改时,我都会更改文本字段的文本,然后将其背景变为绿色半秒钟,然后将其变回白色。问题是,在第一次更改之后,文本字段不再闪烁绿色。当我注释掉将背景转换回白色的部分时,其余部分起作用,并且单元逐渐(正确)逐渐变为绿色,这表明它正在正常运行。我试图通过重新粉刷和重新验证UI来解决此问题,但是它不起作用。发生了什么事?
下面是我用于更新UI的代码。
try {
textfieldArray[row][col].repaint();
textfieldArray[row][col].revalidate();
textfieldArray[row][col].setBackground(Color.green);
textfieldArray[row][col].repaint();
textfieldArray[row][col].revalidate();
Thread.sleep(300);
textfieldArray[row][col].setBackground(Color.white);
textfieldArray[row][col].repaint();
textfieldArray[row][col].revalidate();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
答案 0 :(得分:1)
Swing是一个单线程框架,它也不是线程安全的。这意味着两件事。
首先,永远不要在事件调度线程和...的上下文中执行任何长时间运行或阻止的操作。
第二,永远不要从事件调度线程的上下文外部更新/修改UI或UI依赖的任何内容。
这意味着您的Thread.sleep
阻止了EDT,从而阻止了处理绘画请求。
相反,您需要某种方式可以触发指定的延迟后发生更新。如果那没有使Swing Timer
尖叫,我不知道是什么
我强烈建议您花时间仔细阅读Concurrency in Swing,以了解代码为何无法正常工作的背景,并可能How to Use Swing Timers来寻求解决方案
import java.awt.Color;
import java.awt.EventQueue;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
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.JTextField;
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 JTextField field;
public TestPane() {
setLayout(new GridBagLayout());
field = new JTextField("All your bases beloging to us", 20);
JButton blink = new JButton("Blink");
Timer timer = new Timer(500, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
field.setForeground(null);
field.setBackground(null);
}
});
timer.setRepeats(false);
GridBagConstraints gbc = new GridBagConstraints();
gbc.gridwidth = GridBagConstraints.REMAINDER;
add(field, gbc);
blink.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
field.setForeground(Color.WHITE);
field.setBackground(Color.GREEN);
timer.start();
}
});
add(blink, gbc);
}
}
}