Displaying 1 result from an estimated 1 matches for "theclassnam".
Did you mean:
theclassname
2016 Jun 17
1
Error: Could not find or load main class with OpenJDK and Oracle Java
...with:
# java -version
java version "1.8.0_91"
Java(TM) SE Runtime Environment (build 1.8.0_91-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.91-b14, mixed mode)
# javac -version
javac 1.8.0_91
Now to my problem please -
I have created a simple java file named TheClassName.java:
package thepackagename;
public class TheClassName {
public static final void main(String[] args) {
System.out.println("Hello World!");
}
}
After successfully compiling it with "javac TheClassName.java"
(which pro...