调试时在Eclipse中出现“找不到源”错误

时间:2018-10-02 16:17:14

标签: java eclipse class debugging

我是Java的新手。
我有一个迷宫解决程序,但是我得到了

  

找不到源

我调试程序时出现

错误。我几乎尝试了所有事情,但没有成功。我不能再详细说明这个问题。

这是我的主要代码:

File file=new File("C:\\Users\\jan\\Desktop\\maze2.txt");
Scanner sc=new Scanner(file);
int count=sc.nextInt();
System.out.println(file.exists());
System.out.println(file.canRead());
Maze[] mazes=new Maze[count];
for(int i=0;i<count;i++) {
    mazes[i]=new Maze(sc.nextInt(),sc.nextInt());
    mazes[i].makeMatrix(sc);
    mazes[i].solve();
}

我在truefile.exists()中也得到了file.canRead()
我该如何解决?

0 个答案:

没有答案