java类读取其所在jar包外部的配置文件

Posted dali_lyc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java类读取其所在jar包外部的配置文件相关的知识,希望对你有一定的参考价值。

通过读流的方式getResourceAsStream();
设置静态块,对象装载时只执行一次;
提供get方法来访问配置对象
public class FileConfig {

   private static String ACCESS_KEY;private static String END_POINT;static {
        Properties props = new Properties();
        try {
            props.load(FileConfig.class.getResourceAsStream("/resource.properties"));
        ACCESS_KEY = props.getProperty("accessKey");
        END_POINT = props.getProperty("endPoint");
     } catch (Exception e) {
             System.out.println("can not find resource.properties file");
     }
    }

  public static String getAccessKey() {
    return ACCESS_KEY;
  }

  public static String getEndPoint() {
    return END_POINT;
  }

}

 

以上是关于java类读取其所在jar包外部的配置文件的主要内容,如果未能解决你的问题,请参考以下文章

jar包里面的代码如何读取jar包中的配置文件?

jar包中的类读取配置文件的路径问题,求大家帮帮忙

自定义jar配置文件问题?

jar包启动方式以及配置文件读取顺序

怎么从外部读取jar包中的资源文件

java根据类查所在的jar包