Java error - bad source file: file does not contain class x . Please remove or make sure it appears

后端 未结 5 1365
你的背包
你的背包 2020-11-30 12:36

Recently started studying Java for an exam.

While learning packages, tried this and got an error message. What I did was,




        
5条回答
  •  一生所求
    2020-11-30 13:23

    the file A.java should be in the path JavaTest\com\test\helpers\A.java

    and don't forget to compile it like this: javac -d . com\test\helpers\A.java

提交回复
热议问题