I'm trying to make a Jframe class that has buttons with icons
public ImageIcon Flag = new ImageIcon(getClass().getResource("resources/Flag.png"));
Gives me a null pointer exception
"C:\Users\Khalidi\Documents\NetBeansProjects\MineSweeper\resources\Flag.png"
Is the full directory to reach the image I want I created the folder resources to house the images I need Where should i place the images? And what line of code should i be writing?
Thanks in advance