DAY 发表于 2019-8-30 16:26:39

[JDBC]加载类路径下的properties文件

本帖最后由 DAY 于 2019-8-30 16:32 编辑

http://pic1.win4000.com/pic/7/2d/9cf0272735.jpg
InputStream in = getClass().getClassLoader().getResourceAsStream("JDBC.properties")
    Properties properties = new Properties();
    properties.load(in);
    driverClass = properties.getProperty("driver");

1.getClass() :返回此 Object 的运行时类
2.getClassLoader():https://www.cnblogs.com/faunjoe88/p/8023239.html
页: [1]
查看完整版本: [JDBC]加载类路径下的properties文件