In one of my exercises, the text recommended to use the Resource loader, what is it?
My researches pointed toward ClassLoader.getResources() and this.getClass().getResources(); I assume it's something that searches the package for the file specified but how, and what are the differences between the two methods?
Can't I just make an InputStream with an absolute path and navigate in the package to where my files are?