即使将文件放置在指定的; path中也找不到文件错误

时间:2019-03-12 15:32:59

标签: java java-7

我当前的目录中有一个名为“ info”的文件。但是当使用新的File(“ info”);时,我仍然收到File not found错误。

我的cwd是:C:\ Users \ sit \ eclipse-workspace \ Assignment%03 \ bin \ info

 String rootPath = Thread.currentThread().getContextClassLoader().getResource("").getPath();
        String info_file = rootPath + "info";

        // Read the properties into the internal structure

        try {
          identity.load(new FileInputStream(info_file));
        } catch (Exception e) {
              System.out.println(e.getMessage());
        }

我得到的错误是: C:\ Users \ sit \ eclipse-workspace \ Assignment%03 \ bin \ info(系统找不到指定的路径)

但是我已经在指定路径中找到了名为info的文件。不确定为什么找不到

我正在Windows上使用Java 1.7和Eclipse平台

0 个答案:

没有答案