Error: Could not find or load main class- Novice

后端 未结 4 904
春和景丽
春和景丽 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:34

    On this line:

    input = RandomAccessFile("C:\Workspace\conf.txt",'r');
    

    You need to escape the \'s

    input = RandomAccessFile("C:\\Workspace\\conf.txt",'r');
    

提交回复
热议问题