首页 > 学院 > 开发设计 > 正文

java读取属性配置文件工具类

2019-11-15 00:54:19
字体:
来源:转载
供稿:网友
java读取属性配置文件工具类
import java.io.IOException;import java.io.InputStream;import java.util.PRoperties;/** *  * 类: ProUtil <br> * 描述: 属性配置文件读取类 <br> * 作者: poseidon<br> * 版本: 1.0<br> * 时间: 2015-7-17 上午09:20:17 */public class ProUtil {    /* 私有构造方法,防止被实例化 */    private ProUtil (){};       public static Properties  propertie = null;    static {         propertie = new Properties();        InputStream inputStream = ProUtil.class.getResourceAsStream("/config.properties");        try {            propertie.load(inputStream);            inputStream.close();        } catch (IOException e) {        }    }        public static void main(String[] args) {        System.out.println("--->"+ProUtil.propertie.get("username"));  //username    }}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表