2008-10-04から1日間の記事一覧

JFrameにアイコンを設定する

swingアプリケーションのウィンドウのアイコンを指定する ImageIcon icon = new ImageIcon("icon.png"); frame.setIconImage(icon.getImage()); パスのセパレータは/じゃなくて\じゃないとだめな罠 ImageIcon icon = new ImageIcon("icon\\icon.png"); frame…