先把知识放在这,在整理,
public void setIcon(String file, JButton iconButton) {
ImageIcon icon = new ImageIcon(file);
Image temp = icon.getImage().getScaledInstance(iconButton.getWidth(),
iconButton.getHeight(), icon.getImage().SCALE_DEFAULT);
icon = new ImageIcon(temp);
iconButton.setIcon(icon);
}
java.net.URL imgURL = Frame.class.getResource("111.gif");
ImageIcon image =new ImageIcon(imgURL);