项目中常用的配置文件格式:
1,properties,如连接数据库时配置connection.properties;
2,xml,如日志配置log4j2.xml;
3,json;
在src目录下新建conn.properties,
this.getClass().getResource(""),文件名前必须加"/",否则报错;
this.getClass().getClassloader().getResource(""),文件名前不加"/";
如果在类所在包里新建配置文件conn1.properties, 文件名前不加"/";
测试结果:
利用properties配置属性,可以直接使用Properties类的load方法,比较方便