I am using a createAndShowGUI()
method to create a JFrame
. I am trying to set an icon, but when I run it in NetBeans, it doesn't show. However, when I run a .jar
file (with the image in the same folder), then it works without a flaw.
private static void createAndShowGUI() {
//Create and set up the window.
JFrame game = new JFrame();
game.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
game.setSize(198, 409);
game.setResizable(false);
game.setTitle("Frame Title");
ImageIcon img = new ImageIcon("Icon.png");
game.setIconImage(img.getImage());
game.setVisible(true);
}
Any ideas where the problem could be?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…