码迷,mamicode.com
首页 > 其他好文 > 详细

Properties类加载属性文件

时间:2017-11-16 18:41:53      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:new   fileinput   无法找到   property   内聚   put   name   ops   use   

Properties类加载属性文件加载是开发中常用的一种方法。可以达到低耦合、高内聚的作用

注:properties属性文件必须方法src目录下,否则load()加载器无法找到properties属性文件。

方法如下:

         Properties props = new Properties();

         props.load(new FileInputStream(propertiesname));

         driver = props.getProperty("properties文件中的driver键名")

 url = props.getProperty("properties文件中的url键名")

 user = props.getProperty("properties文件中的user键名")

 pass = props.getProperty("properties文件中的pass键名")

 

创建好上面的句可以在加载驱动时直接传入如上的变量名作为参数。

 

Properties类加载属性文件

标签:new   fileinput   无法找到   property   内聚   put   name   ops   use   

原文地址:http://www.cnblogs.com/lwltfd-IT/p/7845395.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!