java – 图像翻转无法正常工作

任何人都可以帮我解决这个问题.我有两个图像1.jpg和2.jpg,当我运行程序时,1.jpg出现在按钮上,但当我将鼠标悬停在按钮上时,2.jpg不会出现.下面是代码,谢谢

import javax.swing.*;

class ButtonRollover {
public static void main(String[] args) throws Exception {

    String path1 = ("C:\\1.jpg");
    String path2 = ("C:\\2.jpg");

    final JLabel pic1 = new JLabel(new ImageIcon(path1));
    final JLabel pic2 = new JLabel(new ImageIcon(path2));

    SwingUtilities.invokeLater(new Runnable() {
        public void run() {


             JButton button = new JButton("Hover");
             button.setRolloverIcon(new ImageIcon("C:\\2.jpg"));
             button.add(pic1);
             button.setRolloverEnabled(true);

             JOptionPane.showMessageDialog(null, button);
        }
    });
}
}

最佳答案 你不应该在按钮内添加标签.只需设置其图标即可

button.setIcon(new ImageIcon(path1));

代替

button.add(pic1);
点赞