答案 0 :(得分:0)
您可以创建一个按钮,如下所示
JButton button = new JButton();
try {
Image img = ImageIO.read(getClass().getResource("resources/water.bmp"));
button.setIcon(new ImageIcon(img));
} catch (IOException ex) {
//catch exceptions
}
你可以打电话
button.setIcon(new ImageIcon(img));
在运行时更改按钮图像。
你可以打电话
button.setBackground()
在运行时更改背景。
有关详细信息,请查看JButton Documentation。