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

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


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值