需要使用的是jar包:commons-collections-3.2.、commons-configuration-1.、commons-lang-2.和commons-logging-1.。
二、使用读取
InputStream inputStream = ().getClassLoader().getResourceAsStream("com/styspace/");
需要注意的是getClassLoader().getResourceAsStream()的参数是项目根目录下的路径,尽管是该该类文件在相同的目录下,但是不能写成getClassLoader().getResourceAsStream(""),这样程序会报错,得到的InputStream是null值。
ClassLoader()和URLClassLoader()区别:ClassLoader()只能查找src目录下的文件,而URLClassLoader()则能查找任意目录下的文件。
三、spring中配置文件的读取
1、ClassPathXmlApplicationContext:从类路径中加载。
2、FileSystemXmlApplicationContext:从文件系统加载。
3、XmlWebApplicationContext:从web系统中加载。
庖丁中使用的方法:
("ifexists:")
URL url = ().getResource("dic");
("classpath:")
path = ("classpath:".length());
url = getClassLoader().getResource(path);
file = new File(getUrlPath(url));
in = ();
absolutePath = ();
(in);
private static ClassLoader getClassLoader() {
ClassLoader loader = ().getContextClassLoader();
if (loader == null) {
loader = ();
}
return loader;
}