So I have a playable game where there are images that are stored in my flashdrive. However, after exporting the jar file to my desktop, and unplugging my flashdrive, the images disappear in my game. If that is so, how are the people who play my game going to see my images if I put my jar file online for them to download? In my code I upload the images to my code like this:
static Image LimageFishy = new ImageIcon("F://Picture//Lfish.png").getImage();
static Image RimageFishy = new ImageIcon("F://Picture//Rfish.png").getImage();