Recently, when trying to compile java programs from the command prompt, I get this error:
Error: Cannot find or load main class com.sun.tools.javac.Main
I have the latest versions of the JDK and JRE, and I still get the error. Here is what I type in the command line:
C:\Java_Source_Codes>javac hi.java
Can anyone help?
(Here is my java code)
public class hi{
public static void main(String[] args){
System.out.println("hello, world!");
}
}