JFrame图标错误

时间:2017-04-06 20:10:05

标签: java jframe icons

每次我在JFrame上使用setIcon运行我的项目时,Icon都会显示,但JFrame内的其他所有内容都会消失。当我调整窗口大小时,一切都会再次出现......

    java.net.URL iconURL = getClass().getResource("/img/steam.png");
    // iconURL is null when not found
    ImageIcon icon = new ImageIcon(iconURL);
    f.setIconImage(icon.getImage());
    f.setVisible(true);
    f.setSize(250,150);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

我已经尝试过使用其他类型的代码,没有什么工作正常,为什么maaan ??

0 个答案:

没有答案