0

在我的代码中,我有一个 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();}
     }
    });
4

1 回答 1

0

所以,我自己找到了答案。够愚蠢的,我有JLabel statusLabel = new JLabel(); 里面的 ActionListener。所以,任何时候我点击按钮,触发的动作都会创建一个新的实例JLabel(因此是BufferedImage),导致我的挥杆中的 JLabel 的数量等于 JButton 的点击次数!我只是移动 JLabel statusLabel = new JLabel();到该行之前PlotStatus.addActionListener(new ActionListener() {,它现在可以正常工作并在每次单击时更新 BufferedImage,正如预期的那样。

我希望这对将来的某人有用!

于 2013-10-23T06:53:14.860 回答