当读取的文件在硬盘中的某个文件夹中使用FileInputStream,若在编写程序时,比如自己的properties文件需要放到resource文件夹中,此时需要用到:当前类.class.getClassLoader().getResourceAsStream("filename")
InputStream is = new FileInputStream(file);读取工程中的配置文件时要求配置文件是在项目根目录下或盘符上,如果配置文件放在类路径下,FileInputStream(file)是读不到的。
知道这点时,让我不由得想起了创建Spring容器时根据配置文件位置会选用不同的实现方式,如果applicationContext.xml放置在类路径下,容器创建方式是这样:ApplicationContext ac = new ClassPathXmlApplicationContext(classpath);如果applicationContext.xml放置在项目根目录下或磁盘上时,容器的创建方式时这样的:ApplicationContext ac = new FileSystemXmlApplicationContext(filepath);
那我想读取项目类路径下的配置文件应该使用:InputStream is = A.class.getResourcesAsStream(classpath);