I'm running into an issue where I am able to compile Java files but I cannot run any of them. I have currently created a Hello World java file in my Desktop folder and compiled it and there is a HelloWorld.class that has been created as well. But when I run java HelloWorld
, I get the following error:
Error: Could not find or load main class HelloWorld Caused by: java.lang.ClassNotFoundException: HelloWorld
I have googled around and it seems to have something to do with CLASSPATH? I have tried the command ECHO ${CLASSPATH}
and it has returned me nothing but apparently it should return me .
? Could someone point me in the direction of how to fix this java issue and does it have anything to do with CLASSPATH? Thank you!