您的位置:首页 > 编程语言 > Java开发

整理下最近写java一个小界面程序的知识整理

2012-12-22 00:59 375 查看
先把知识放在这,在整理,

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);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐