ClassLoader.getSystemResourceAsStream与Class.getClassLoader().getResourceAsStream()

本文详细解释了Java中ClassLoader如何使用不同的方式加载资源,并对比了this.getClass().getClassLoader().getResourceAsStream()与ClassLoader.getSystemResourceAsStream()的区别。前者利用当前类的类加载器搜索资源,而后者则使用系统类加载器进行资源查找。
ClassLoader.getSystemResourceAsStream uses the system ClassLoader (ClassLoader.getSystemClassLoader) to search for the resource.
this.getClass().getClassLoader().getResourceAsStream() uses the sameClassLoader that loaded the class for "this" Object. That ClassLoadermight be a child of the system ClassLoader, and thus could have accessto resources the system ClassLoader does not have. But since it is achild of the System ClassLoader, it also will ask its parent (System)to help it find resources. So using this method will allow you to findthings in that ClassLoader AND in the System ClassLoader.
The search order is defined in the javadoc for ClassLoader.getResource (parent(s) first, then child).
For example, say you were running some code from a Servlet. The SystemClassLoader contains whatever you put in CLASSPATH when you started theWeb Server, but the servlet class is probably loaded by anotherClassLoader that the server created to handle the WebApp's WEB-INF/liband WEB-INF/classes directories. Things in those directories would beaccessible using that WebApp's ClassLoader, but would not be inCLASSPATH - so the System ClassLoader does not know about them.
I'm not sure I explained that well - hope it helps.

So if you want to get properties from a static method, it's better to use:

SomeClass.class.getClassLoader().getResourceAsStream("XX.properties"));


转自:http://yaodong.yu.blog.163.com/blog/static/121426690200961282221588/

参考:http://stackoverflow.com/questions/6298400/class-getresource-and-classloader-getsystemresource-is-there-a-reason-to-prefer


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值