Search code examples
javaswingimageicon

Java image icon array


How can I make an array of image icons? When I click a JButton on a different class, the ImageIcons should be set to a JLabel.


Solution

  • ImageIcon[] array and when clicking the button: label.setIcon(array[i]) in the actionPerformed method of the corresponding ActionListener.