我正在使用spring,我想从jar文件中读取文件名,但我得到了FileNotFoundException
。任何人帮助我,请检查下面的代码。
ClassPathResource classPathResource = new ClassPathResource("test.txt");
System.out.println(classPathResource.getPath());
System.out.println(classPathResource.getURI());
System.out.println(classPathResource.getURL().getPath());
System.out.println(classPathResource.getURI().getPath());
但是当我写下面的时候
System.out.println(classPathResource.getFile().getCanonicalPath());
System.out.println(classPathResource.getFile().getPath());
以上两行都是抛出异常,但是当我使用普通的java程序时,一切都运行良好。