0

当数据提交到数据库时,我需要重新加载 JPanel 的背景图像。我创建了从数据库填充图像的 JPanel。当我更新图像并提交它时,背景会自动改变。我也尝试使用 repaint() 和 revalidate() 但它不起作用。它必须重新启动应用程序并再次运行,它才能工作。

这是我在 JPanel 中显示背景的代码。

public void getLogo(Company company, PanelCompany view) {
        JPanel panel = new BackgroundImage(company.getLogoBlob());
        panel.revalidate();
        panel.setVisible(true);
        panel.setBounds(10, 10, 120, 120);
        view.getPanelPhoto().add(panel);
}

这是我的助手类:

public class BackgroundImage extends JPanel{
    private Image image;

    public BackgroundImage (InputStream input) {
        try {
            image = ImageIO.read(input);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    @Override
    protected void paintComponent(Graphics grphcs) {
        super.paintComponent(grphcs);
        Graphics2D gd = (Graphics2D) grphcs.create();
        gd.drawImage(image, 0, 0, getWidth(), getHeight(), this);
        gd.dispose();
    }
}

有什么解决办法吗?感谢您之前的关注:)

4

1 回答 1

2

首先,你的助手类应该设置它自己的大小。

其次,您应该只Graphics使用JPanel.

public class BackgroundImage extends JPanel{
    private Image image;

    public BackgroundImage (InputStream input) {
        try {
            image = ImageIO.read(input);
            setPreferredSize(new Dimension(image.getWidth(), image.getHeight()));
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    @Override
    protected void paintComponent(Graphics grphcs) {
        super.paintComponent(grphcs);
        Graphics2D g2d = (Graphics2D) grphcs;
        g2d.drawImage(image, 0, 0, getWidth(), getHeight(), this);
    }
}

现在你的电话看起来像这样。

public void getLogo(Company company, PanelCompany view) {
        JPanel panel = new BackgroundImage(company.getLogoBlob());
        view.getPanelPhoto().add(panel);
}

您的PanelCompany班级必须使用布局管理器。这是Oracle 的布局管理器视觉指南

选一个。

于 2013-03-13T14:21:50.693 回答