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

读取配置文件

时间:2020-02-29 00:41:18      阅读:43      评论:0      收藏:0      [点我收藏+]

标签:resource   tac   base   方法   配置   put   print   ssl   col   

//        从配置文件获取连接数据库的信息
//        通过FileReader 读取配置文件
        FileReader fileReader = new FileReader("conf/server.properties");
        //创建属性对象
        Properties pro = new Properties();
        //通过属性对象的load方法将配置文件的信息加载到内存中生成一个map集合
        pro.load(fileReader);
        //關閉劉
        fileReader.close();
        
        
        String driver = pro.getProperty("driver");
        String url = pro.getProperty("url");
        String user = pro.getProperty("user");
        String password = pro.getProperty("password");
-----------------------------------------------------------------------------------------------------------------    
    //静态代码块,类加载时候就初始化了
    static{
     //创建属性对象
        Properties properties = new Properties();
        //通过类加载器读取对应的资源
        InputStream is = BaseDao.class.getClassLoader().getResourceAsStream("db.properties");
        try {
       //将is流中的所有数据加载到属性对象中
            properties.load(is);
        } catch (IOException e) {
            e.printStackTrace();
        }
        driver = properties.getProperty("driver");
        url = properties.getProperty("url");
        username = properties.getProperty("username");
        password = properties.getProperty("password");

    }
 

 

读取配置文件

标签:resource   tac   base   方法   配置   put   print   ssl   col   

原文地址:https://www.cnblogs.com/rzkwz/p/12381124.html

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