代码如下:
ImageIcon icon1 = new ImageIcon(curDir + "/img/folder.png"); Image img = icon1.getImage(); Image newimg = img.getScaledInstance(width,height,java.awt.Image.SCALE_SMOOTH); ImageIcon icon = new ImageIcon(newimg); JButton button = new JButton(icon);