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());
}
}