配置文件的读取
Posted chichung
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置文件的读取相关的知识,希望对你有一定的参考价值。
(1)配置文件放在项目的根目录下
Properties properties = new Properties(); InputStream is = new FileInputStream("config.properties"); // 导入输入流 properties.load(is); // 读取 driverClass = properties.getProperty("driverClass"); url = properties.getProperty("url"); username = properties.getProperty("username"); password = properties.getProperty("password");
(2)配置文件放在src目录下
Properties properties = new Properties(); InputStream is = JDBCutils.class.getClassLoader().getResourceAsStream("config.properties"); // 导入输入流 properties.load(is); // 读取 driverClass = properties.getProperty("driverClass"); url = properties.getProperty("url"); username = properties.getProperty("username"); password = properties.getProperty("password");
以上是关于配置文件的读取的主要内容,如果未能解决你的问题,请参考以下文章