I am getting the above error and the answer here isn't helping.
Basically I can't seem to run a file that I have compiled in Java. The file I am trying to run HowMARK_II_FitsInBrainAnatomy.java is here
I am using the following command to compile all needed .jars and the current directory with :.
in the -cp
argument at the end:
javac -cp /home/ugrads/majors/quinnliu/workspace/WalnutiQ/build/libs/WalnutiQ.jar:/home/ugrads/majors/quinnliu/workspace/WalnutiQ/referencedLibraries/gson-2.2.4.jar:. HowMARK_II_FitsInToBrainAnatomy.java
So after I use the above command I create the compiled file HowMARK_II_FitsInToBrainAnatomy.class
but the the following command to run the file gives me the ERROR in the title of this question:
java -cp /home/ugrads/majors/quinnliu/workspace/WalnutiQ/build/libs/WalnutiQ.jar:/home/ugrads/majors/quinnliu/workspace/WalnutiQ/referencedLibraries/gson-2.2.4.jar:. model.MARK_II.vision.HowMARK_II_FitsInToBrainAnatomy
I don't see what I am doing wrong as I add :.
to my -cp