一、项目子目录下创建一个文件夹(命名为config)
二 、放入properties文件到(config)目录
三、把config目录变成资源文件
具体代码如下:
public static void readFile() {
try {
InputStream is = JdbcUtil.class.getClassLoader().getResourceAsStream("JDBC.properties");
// 创建properties对象
Properties pr = new Properties();
pr.load(is);
// 读取配置文件内的内容
driver = pr.getProperty("driver");
url = pr.getProperty("url");
user = pr.getProperty("user");
password = pr.getProperty("password");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}