java jar运行外部配置文件(.properties)

解决方法如下:

1.通常导入项目内的配置文件(.properties文件)是如下代码:

     Properties properties = new Properties();
    // 使用ClassLoader加载properties配置文件生成对应的输入流
    InputStream in = Propertiesxxx.class.getClassLoader().getResourceAsStream("xxx.properties");
    // 使用properties对象加载输入流
    properties.load(in);
    //获取key对应的value值
    properties.getProperty(String key)

其中Propertiesxxx项目类名称

2.用这种办法读取配置文件(.properties文件)时,当你将项目导出成jar包时,是无法读取外部的配置文件(.properties文件),所以我们将该成读取外部的配置文件(.properties文件),代码如下:

Properties properties = new Properties();
FileInputStream in= new FileInputStream("xxx.properties");
properties.load(in);
 

你可能感兴趣的:(JAVA编程)