一:如果容器为Websphere,那下面为红色的地方不能加"/",如果为tomcat,则加上"/",
String path = this.class.getResource("").getPath()+"config.properties";
Properties properties= new Properties();
properties.load(new FileInputStream(new File(path )));
如果你的config.properties在某个包下面,则把包同时带上,如:config.properties在com.df.util包下,则为:
String path = this.class.getResource("").getPath()+"com/df/util/config.properties";
Properties properties= new Properties();
properties.load(new FileInputStream(new File(path )));
二:如果你的项目中用到了spring,那么也可这样获取,这时候配置文件需放在src目录下,否则好不到路径
import org.springframework.core.io.Resource;
import org.springframework.core.io.ClassPathResource;
Resource resource = new ClassPathResource("config.properties");
Properties properties= new Properties();
InputStream in = resource.getInputStream();
properties.load(in);
本文介绍了在不同应用服务器环境下(如Websphere与Tomcat)如何正确加载配置文件config.properties的方法,并给出了使用Spring框架进行配置文件读取的示例。
1008

被折叠的 条评论
为什么被折叠?



