jar包读取配置文件

Posted 偏爱shu

tags:

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

读取jar包内配置文件:

Properties config = new Properties();

  1. InputStream in = this.getClass().getClassLoader().getResourceAsStream("/configfilename.properties"); 
  2. InputStream in =Thread.currentThread().getContextClassLoader().getResource("/configfilename.properties").openStream();

config.load(in);

读取jar包外配置文件: 

Properties config = new Properties();

String filePath = System.getProperty("user.dir") + "/conf/configfilename.properties";

InputStream in = new BufferedInputStream(new FileInputStream(filePath));   

config.load(in);

System.getProperty("user.dir")输出的是jar包所在的路径。

为了防止Linux里读取“/”的错误,我们用File.separator来代替“/”。

所以

String filePath = System.getProperty("user.dir") +File.separator+"conf"+File.separator+"configfilename.properties";

 

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

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

jar包启动配置文件application.property存放位置

jar包读取配置文件

SpringBoot:加载和读取jar包外面的资源文件

自定义jar配置文件问题?

如何将Properties配置打入jar包并读取内容