[Solved] Producing a Java program for other systems
You can pack your application in a .jar, actually a zip file with inside .class files and resource files. Those resource files, like your images, can be taken with getClass().getResource(“path/x.png”) or getResourceAsStream. The path is either package relative or absolute: “/abc/def.jpg”. These resources must be read-only (as they are inside the .jar). However you may … Read more