For example, if I'm using this way for getting the images:
InputStream imgpacman2up = Tablero.class.getResourceAsStream("pacmanup1.png");
BufferedImage pacman2upImg = ImageIO.read(imgpacman2up);
pacman2arriba = new ImageIcon(pacman2upImg).getImage();
How would the route of the image ("In this case "pacmanup1.png") would be modified if the images are saved in a folder from another package of the project?
Thanks!