Could not find or load main class error in java

Posted by Somesh Shinde On Tuesday, 26 July 2016 0 comments

Could not find or load main class error in java

If you got above error do the following solution:-- Definitely it runs


If the class is in a package
package thepackagename; public class TheClassName { public static final void main(String[] cmd_lineParams) { System.out.println("Hello World!"); } }Then calling the following results in Error: Could not find or load main class TheClassName.
java -classpath . TheClassNameIt must be called with its fully-qualified name:
java -classpath . thepackagename.TheClassNameAnd this command must be called from the directory in which the thepackagename directory exists.

0 comments:

Post a Comment