如何使用Properties配置文件

工具:eclipse(Myeclipse)
知识面:javase IO流/文件配置

1.步骤:创建Properties对象
2.创建文件路径
3.加载资源配置
4.关闭文件路径

5.使用加载资源对象properties调用getProperties()

配置文件的使用:#这个是驱动名
driver=oracle.jdbc.driver.OracleDriver
#这个是数据库路径
url=jdbc:oracle:thin:@<域名>.<端口>.<SID>
#这个是数据库用户名
username=xxx
#这个是数据库密码
password=xxx

//配置对象
		try {
		Properties properties = new Properties();
		//配置文件路径
		InputStream inStream 
			= PropertiesDemo.class.
				getClassLoader().
				getResourceAsStream(
				"com/csdn/jdbcdemo/date2017_11_12/propertis.txt");
		//加载资源配置	
		properties.load(inStream);
		
		//关闭配置文件路径
		inStream.close();
		
		//获取配置文件中的信息
		
		//获取驱动名
		String driver = properties.getProperty("driver");
		//获取路径
		String url = properties.getProperty("url");
		//获取用户名
		String username = properties.getProperty("username");
		//获取密码
		String password = properties.getProperty("password");
		
		System.out.println(driver+"\n"+url+"\n"+username+"\n"+password);
		
		
		} catch (IOException e) {
			e.printStackTrace();
		}


  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值