java could not find or load main class code example

Example 1: Error: Could not find or load main class mina.calc.MinaCalculator in module mina

//You must change your class name

Example 2: > Task :run FAILED Error: Could not find or load main class Caused by: java.lang.ClassNotFoundException:

Check your build.gradle file and update the application block:

application {
    // Define the main class for the application.
  	// insert the entire name of the class
    mainClassName = 'packageName.MainClass'
}

Example 3: Error: Could not find or load main class -Djava.library.path=.home.hdoop.hadoop-3.3.0.lib.native

Sounds silly, but if you've copied .bashrc lines from somewhere
check that the quotation marks are like this:
    export HADOOP_OPTS="-Djava.library.path=$HADOOP_HOME/lib/native"
and not like this
    export HADOOP_OPTS=”-Djava.library.path=$HADOOP_HOME/lib/native”

...took me some time

Example 4: eclipse Error: Could not find or load main class main java.lang.ClassNotFoundException

// Run configurations -> Run -> Run configurations
// In the Classpath tab select "Advanced"
// Add where Eclipse usually put the *.class for the projects, which is (usually) "bin".

Example 5: could not load main class java

// after compiling
$ javac Main.java
// instead of
$ java Main.class
// try running
$ java Main

Tags:

Misc Example