标签:使用 word 输出 ace art one 解释 ocs 接收
com |-github |-demo | |-A.class | |-1.txt |-B.class |-2.txt
注意!demo前是没有/的,这是一个相对路径,是相对于B所在包下的demo子包里的1.txt文件,所以这个路径也是正确无误的!
关于ClassLoader.getResourceAsStream
class.getResourceAsStream最终调用是ClassLoader.getResourceAsStream
只是在这之前对参数进行了调整。如果参数已/开头,则去除/,否则把当前类的包名加在参数的前面。
在使用ClassLoader.getResourceAsStream时,路径直接使用相对于classpath的绝对路径,并且不能已 / 开头。
InputStream resourceAsStream = ClassLoader.getSystemResourceAsStream("com/github/demo/1.txt");
Class.getResourceAsStream和ClassLoader.getResourceAsStream方法
标签:使用 word 输出 ace art one 解释 ocs 接收
原文地址:http://www.cnblogs.com/clarke157/p/7873259.html