在我的代码中,我有一个 JButton(名为 PlotStatus),当单击它时,会在 JLabel 中导入和打印图像。图像作为 BufferedImage 从不断更新的 png 文件导入。我希望能够在单击 JButton 时随时刷新/更新 JLabel 上的图像。也就是说,在每次单击时,我都希望缓冲存储器重置并 JLabel 重新加载(更新的)图像。相反,我打印出所有不同的图像,第一个留在前景上。
StatusLabel 和 temp 在这里定义为私有(但 public 没有区别)。我尝试了许多不同的方法并阅读了许多帖子,但完全没有运气,因为有些东西看起来应该可以工作。任何建议都受到高度赞赏。
提前致谢。
//This is an Item Listener which reacts to clicking on the JButton PlotStatus
PlotStatus.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
JLabel statusLabel = new JLabel(); panel1.remove(statusLabel);
BufferedImage bufferedImage = null;
try {
bufferedImage = ImageIO.read(new File("status.png"));
bufferedImage.flush();
JLabel temp = new JLabel();
temp.setIcon(new ImageIcon(bufferedImage));
statusLabel = temp;
panel1.add(statusLabel);
revalidate();repaint();
statusLabel.setVisible(true);statusLabel.setBounds(560,20,650,440);
} catch(IOException ex) {ex.printStackTrace();}
}
});