Sorry you have had such a long wait for a reply. Have you been through the
Java™ Tutorials? You don't need the whole of that section:
this part might also be useful. What you are doing is adding a resource to your CLASSPATH. You have three entries in that CLASSPATH. Only the
. part, referring to your current directory, will be unchanged. You would usually have to change the remainder to match the locations of your resources. Start with one resource and
. only, to make things easier.
Remember that if you have multiple XXX.jar files in your CLASSPATH, and they contain multiple copies of XYZ.class files with the same name, you can't predict which XYZ.class file the JVM will use.
[edit]Remember the Java™ Tutorials haven't been updated since Java8, so you won't find anything about modules there.