ImageIcon是Icon接口的一個實現類。網絡
ImageIcon類的構造函數:函數
ImageIcon類的經常使用方法:spa
ImageIcon實現的是code
一、設置JLabe、JButton的圖標對象
1 ImageIcon imageIcon=new ImageIcon("./image/1.png"); 2 3 JLabel label1=new JLabel(imageIcon); 4 JLabel label2=new JLabel("test",imageIcon,SwingConstants.CENTER); 5 6 JButton button1=new JButton(imageIcon); 7 JButton button2=new JButton("提交",imageIcon);
./表示項目的根目錄。blog
二、設置程序左上角的圖標接口
1 ImageIcon imageIcon=new ImageIcon("./image/1.png"); 2 frame.setIconImage(imageIcon.getImage()); 3 4 /* 5 參數是Image抽象類的對象。ImageIcon實現的是Icon接口 ,並無實現Image抽象類。 6 須要使用getImage()獲取Image對象 7 */
JFrame、JDialog都可使用此種方式設置窗口左上角的圖標。圖片
此圖標就是程序在任務欄顯示的圖標。get