Could not find or load main class error in java
If you got above error do the following solution:-- Definitely it runs
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 . TheClassName
It must be called with its fully-qualified name:java -classpath . thepackagename.TheClassName
And this command must be called from the directory in which the thepackagename
directory exists.© JAVA E-LEARNING 2011 | Design by Somesh Shinde Supported by java E-learning
0 comments:
Post a Comment