I created a jar file with a runnable compiled class and some template files (text). I now want to use the text files packaged into the jar for distribution in the application as File objects.
I tried to just use relative paths which did not work. How do I get a File object pointing to a text file which is in the jar?
Is there a way to do this so it will work both when running the unpackaged class files and from a jar with the same code, or will I need to use separate functions?