Java中Properties获取资源文件的几种方式


	//获取资源文件方式1-----读取源文件方式
	@Test
	public void test01() throws Exception {
		Properties ps = new Properties();
		FileReader fr = new FileReader("C:/Users/33885/Desktop/eclipse/Day12-2/resources/db.properties");
		ps.load(fr);
		System.out.println(ps);
	}
	//获取资源文件方式2-----通过字节码对象获取
	@Test
	public void test02() throws Exception {
		Properties ps = new Properties();
		InputStream inStream = Test01.class.getResourceAsStream("db.properties");
		ps.load(inStream);
		System.out.println(ps);
	}
	//类加载器方式读取
	@Test
	public void test03() throws Exception {
		Properties ps = new Properties();
		InputStream inStream = Test01.class.getClassLoader().getResourceAsStream("db.properties");
		ps.load(inStream);
		System.out.println(ps);
	}
	//类加载器方式 ---- 当前线程加载
	@Test
	public void test4() throws Exception {
		Properties ps = new Properties();
		InputStream inStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("db.properties");
		ps.load(inStream);
		System.out.println(ps);
	}

Properties获取资源文件1  ---- 读取文件的方式

Properties获取资源文件2 --- 通过字节码对象方式获取

Properties获取资源文件3 --- 通过类加载器方式获取

Properties获取资源文件4 --- 通过当前线程的方式加载(推荐方式)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值