读取 配置文件的两个方法 1. xxx.class.getClassLoader() .getResourceAsStream(xxxx) 2. InputStream in = Thread.currentThread(). getContextClassLoader().getResourceA ...
分类:
其他好文 时间:
2018-10-12 23:52:11
阅读次数:
154
方法改进前: @Testpublic void test01() throws Exception{ InputStream is = Demo.class.getClassLoader().getResourceAsStream("druid.properties"); //创建配置文件对象 Pr ...
分类:
其他好文 时间:
2018-10-10 23:55:50
阅读次数:
264
Spring底层用了哪些技术?(第一 工厂模式 第二 动态代理 ) // 第一个参数是: 类加载器 ClassLoader cl = App.class.getClassLoader(); // 第二个参数:字节码对象数组 // 第二个参数是字节码对象数组,表示动态代理创建出来的那个对象,自动实现了 ...
分类:
其他好文 时间:
2018-09-17 13:28:01
阅读次数:
142
1 1.方法一 2 InputStream fis =TestProperties.class.getClassLoader().getResourceAsStream(“init.properties”) 3 4 2.方法二(要求TestProperties和init.properties在同一目... ...
分类:
其他好文 时间:
2018-08-15 12:01:44
阅读次数:
149
this.getClass().getClassLoader().getResource() this.getClass().getClassLoader().getResourceAsStream() 专门用来 读取资源文件 test文件内容 测试类路径 测试文件路径 测试 类的根目录就是bin( ...
分类:
其他好文 时间:
2018-07-27 19:30:26
阅读次数:
165
1 /** 2 * @author zhangboqing 3 * @date 2018/7/10 4 */ 5 public class FileDemo { 6 7 8 public static void main(String[] args) { 9 // demo1(); 10 // de... ...
分类:
其他好文 时间:
2018-07-11 00:12:06
阅读次数:
183
Class.getResource(String path) 如果我们想在TestMain.java中分别取到1~3.properties文件,该怎么写路径呢?代码如下: Class.getClassLoader().getResource(String path) 输出结果 使用Class.get ...
分类:
其他好文 时间:
2018-06-06 10:42:26
阅读次数:
162
getResourceAsStream()方法可以从classpath 中读取文件,其实就是编译后的class 文件所在的路径 prop.load(this.getClass().getClassLoader().getResourceAsStream(fileName)); 添加到classpat ...
分类:
其他好文 时间:
2018-05-24 18:14:27
阅读次数:
3061
1)htmlcode: 2)servlet code 3)filter代码: 其中获取类的接口集合使用Class类的方法:getClassLoader() public Type[] getGenericInterfaces() 然后强转即可。 ...
分类:
其他好文 时间:
2018-04-06 21:22:04
阅读次数:
190
/** * 获取类加载器 * * @return */ public static ClassLoader getClassLoader() { // 只需要获取当前线程中的ClassLoader即可 return Thread.currentThread().getContextClassLoad... ...
分类:
编程语言 时间:
2018-03-03 19:28:13
阅读次数:
162