在Java中,使用ImageIcon类加载并显示动态图片的方法如下所示:
- 创建一个JLabel对象,用来显示动态图片。
JLabel label = new JLabel();
- 使用ImageIcon类加载图片文件,并将其设置为JLabel的图标。
ImageIcon icon = new ImageIcon("path_to_image_file"); label.setIcon(icon);
- 创建一个Timer对象,并在其中设置一个定时器,用来更新图片。
Timer timer = new Timer(1000, new ActionListener() { @Override public void actionPerformed(ActionEvent e) { // 更新图片 icon.setImage(new ImageIcon("path_to_updated_image_file").getImage()); label.setIcon(icon); } }); timer.start();
这样就可以动态加载并显示图片了。在定时器的actionPerformed方法中更新图片,然后重新设置JLabel的图标即可实现动态加载图片的效果。