java web 读取properties文件路径问题一种解决方法
程序员文章站
2022-06-14 22:13:13
一、项目子目录下创建一个文件夹(命名为config)二 、放入properties文件到(config)目录三、把config目录变成资源文件具体代码如下:public static void readFile() {try {InputStream is = JdbcUtil.class.getClassLoader().getResourceAsStream("JDBC.properties");// 创建properties对象Properties pr...
一、项目子目录下创建一个文件夹(命名为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(); } }
本文地址:https://blog.csdn.net/tao9066/article/details/108856433
上一篇: 大话数据结构 - 栈
下一篇: 快学Scala(第二版)-07-包和引入
推荐阅读