在Java中,使用ImageIcon類加載并顯示動態圖片的方法如下所示:
JLabel label = new JLabel();
ImageIcon icon = new ImageIcon("path_to_image_file");
label.setIcon(icon);
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的圖標即可實現動態加載圖片的效果。