首页 > 代码库 > Websphere中获取项目下.properties路径
Websphere中获取项目下.properties路径
一:如果容器为Websphere,那下面为红色的地方不能加"/",如果为tomcat,则加上"/",
Java代码
- 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包下,则为:
Java代码
- String path = this.class.getResource("").getPath()+"com/df/util/config.properties";
- Properties properties= new Properties();
- properties.load(new FileInputStream(new File(path )));
二:如果你的项目中用到了spring,那么也可这样获取,
Java代码
- import org.springframework.core.io.Resource;
- import org.springframework.core.io.ClassPathResource;
- Resource resource = new ClassPathResource("config.properties"); //直接读取src下的,位于class文件之下
- Properties properties= new Properties();
- InputStream in = resource.getInputStream();
- properties.load(in);
Websphere中获取项目下.properties路径
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。