Could not find or load main class

后端 未结 16 1183
隐瞒了意图╮
隐瞒了意图╮ 2020-11-27 20:27

I have Windows 7, installed jdk1.7.0 and its supporting jre7.
My problem is compilation part works perfectly, but while running the Java program I get this error saying:

16条回答
  •  無奈伤痛
    2020-11-27 20:33

    Simple way to compile and execute java file.(HelloWorld.java doesn't includes any package)

    set path="C:\Program Files (x86)\Java\jdk1.7.0_45\bin"
    javac "HelloWorld.java"
    java -cp . HelloWorld
    pause
    

提交回复
热议问题