Once you have an image in the same folder as your project directory, how to do you get it to show up as an image in a JLabel, JOptionPane, or JButton?
If I have
ImageIcon horse = new ImageIcon("Horsey 4.jpg");
JLabel label = new JLabel("A Horse", horse);
JPanel = new JPanel();
panel.add(label);
panel.setVisible(true);
label.setVisible(true);
will that show the image ?