当数据提交到数据库时,我需要重新加载 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();
}
}
有什么解决办法吗?感谢您之前的关注:)