我想更改项目的图标而不是 java 图标。当程序图标显示在状态栏中时,它应该显示自定义图标而不是默认的 java 图标。
我正在使用以下代码。请告诉我这段代码有什么问题。
class newframe extends JFrame
{
Container cp;
newframe()
{
cp=this.getContentPane();
cp.setLayout(null);
}
public static void main(String args[])
{
newframe frm= new newframe();
frm.setbounds(0,0,1000,800);
frm.setVisible(true);
ImageIcon im1= new ImageIcon("path upto image");
frm.setIconImage(im1.getImage());
}
}