本帖最后由 贾振凯 于 2013-4-16 21:39 编辑
- public class LoaderSourcePath {
- public static void main(String[] args){
- readPro();
- }
- public static void readPro(){
- //为什么通过当前线程类不可以像普通class一样访问包里面的资源???????
- // System.out.println(Thread.currentThread().getClass().getResource("packagesql.properties"));
- /*
- * 通过当前线程上下文类加载器可以像普通的类加载器一样访问classpath目录下的资源
- */
- System.out.println(Thread.currentThread().getContextClassLoader().getResource("zhenkai/lianxi/packagesql.properties"));
- }
- }
复制代码 |