java类加载器获取配置文件

该博客探讨了Java中如何使用ClassLoader和相关方法加载资源,如`security.properties`。通过不同方式获取ClassPath的绝对URI路径,展示了在不同场景下加载资源文件的方法,并强调了在实际开发中正确引用资源路径的重要性。
摘要由CSDN通过智能技术生成
ClassLoader cl = Thread.currentThread().getContextClassLoader();
InputStream resourceAsStream = cl.getResourceAsStream("security" + ".properties");
Properties properties =new Properties();
try {
    properties.load(resourceAsStream);
} catch (IOException e) {
    e.printStackTrace();
}
System.out.println(properties);

// 一般推荐用此方法
// 获取当前ClassPath的绝对URI路径
System.out.println("Thread.currentThread().getContextClassLoader():");
System.out.println(Thread.currentThread().getContextClassLoader()
        .getResource(""));
System.out.println("---------------------------------------");

System.out.println("Test.class.getResource:");
// 获取当前类文件的URI目录
System.out.println(Test.class.getResource(""));

// 获取当前的ClassPath的绝对URI路径。
System.out.println(Test.class.getResource("/"));

System.out.println("---------------------------------------");

System.out.println("Test.class.getClassLoader().getResource:");

// 获取当前ClassPath的绝对URI路径
System.out
        .println(Test.class.getClassLoader().getResource(""));

System.out.println("---------------------------------------");

// 获取当前ClassPath的绝对URI路径
System.out.println("ClassLoader.getSystemResource:");

System.out.println(ClassLoader.getSystemResource(""));
System.out.println("---------------------------------------");

System.out.println("System.getProperty:");

// 对于一般项目,这是项目的根路径。对于JavaEE服务器,这可能是服务器的某个路径。
// 这个并没有统一的规范!所以,绝对不要使用“相对于当前用户目录的相对路径”。
System.out.println(System.getProperty("user.dir"));
System.out.println("---------------------------------------");
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值