Could not find or load main class

后端 未结 16 1197
隐瞒了意图╮
隐瞒了意图╮ 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:41

    I was having a similar issue with my very first java program.

    I was issuing this command

    java HelloWorld.class
    

    Which resulted in the same error.

    Turns out you need to exclude the .class

    java HelloWorld
    

提交回复
热议问题