Websphere中获取项目下.properties路径

时间:2023-03-09 15:07:35
Websphere中获取项目下.properties路径

一:如果容器为Websphere,那下面为红色的地方不能加"/",如果为tomcat,则加上"/",

  1. String  path = this.class.getResource("").getPath()+"config.properties";
  2. Properties properties= new Properties();
  3. properties.load(new FileInputStream(new File(path )));

如果你的config.properties在某个包下面,则把包同时带上,如:config.properties在com.df.util包下,则为:

  1. String  path = this.class.getResource("").getPath()+"com/df/util/config.properties";
  2. Properties properties= new Properties();
  3. properties.load(new FileInputStream(new File(path )));

二:如果你的项目中用到了spring,那么也可这样获取,

  1. import org.springframework.core.io.Resource;
  2. import org.springframework.core.io.ClassPathResource;
  3. Resource resource = new ClassPathResource("config.properties");  //直接读取src下的,位于class文件之下
  4. Properties  properties= new Properties();
  5. InputStream in = resource.getInputStream();
  6. properties.load(in);