读取配置文件
Posted rzkwz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取配置文件相关的知识,希望对你有一定的参考价值。
// 从配置文件获取连接数据库的信息 // 通过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"); }
以上是关于读取配置文件的主要内容,如果未能解决你的问题,请参考以下文章