Error: Could not find or load main class- Novice

后端 未结 4 905
春和景丽
春和景丽 2021-01-24 21:23

Hi I am a novice in JAVA. I have been getting this file not found exception inspite of the file existing in the very location I have specified in the path which is

Initi

4条回答
  •  时光取名叫无心
    2021-01-24 21:29

     "C:\Workspace\conf.txt"
    

    Those are escape sequences. You probably meant:

     "C:\\Workspace\\conf.txt"
    

    You also appear to call it config.txt in one snippet and conf.txt in the other?

提交回复
热议问题