读取项目配置文件的几种方式

1.java.util.ResourceBundle通过ResourceBundle对象操作

        此方法值可用来读取文件,无法操作修改配置文件

	@Test
	public void readTest(){
		ResourceBundle  resource = ResourceBundle.getBundle("context");//配置文件相对工程根目录的相对路径(不含扩展名)
		String key = resource.getString("url");
		System.out.println(key);
	}

2.java.util.Properties通过Properties对象操作

@Test
	public void readTestProperties(){
		Properties pt = new Properties();
		try {
			//获取相对路径下的配置文件(通过类加载器获取对应根目录下的resource资源)
			InputStream read = this.getClass().getClassLoader().getResourceAsStream("context.properties");
			//获取绝对路径下的配置文件,可获取任意(以下两种方式均可)
//			BufferedReader read = new BufferedReader(new FileReader("C:/iMold/workspace/htmpro/src/main/resources/context.properties"));
//			FileInputStream read = new FileInputStream("C:/iMold/workspace/htmpro/src/main/resources/context.properties");
			pt.load(read);
		} catch (IOException e) {
			e.printStackTrace();
		}
		System.out.println("username="+ pt.getProperty("username") + "\n" + "pwd=" + pt.getProperty("pwd"));
	}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值