Idea配置文件的读取

Posted huangyichun

tags:

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

开发过程中遇到配置文件读取问题,因此记录以后运用的到。

配置文件位置:

配置文件内容:

default_size = 100
grid_size = 20
delayTime = 200

配置文件读取方式:

public void initProperties() {
        Properties properties = new Properties();
        String path = LifeGame.class.getClassLoader().getResource("lifeGame.properties").getPath();
        File file = new File(path);
        try {
            FileInputStream inputStream = new FileInputStream(file);
            properties.load(inputStream);
            delay = Integer.parseInt(properties.getProperty("delayTime"));
            tableSize = Integer.parseInt(properties.getProperty("default_size"));
            gridSize = Integer.parseInt(properties.getProperty("grid_size"));
            currentMap = new int[tableSize][tableSize];
            neighbors = new int[tableSize][tableSize];
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

 

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

IntelliJ IDEA无法读取src下的配置文件 报错找不到 解决方案

VSCode 配置 用户自定义代码片段 自定义自动代码补充

intellij idea springboot无法读取配置文件的解决方法

springboot项目在IDEA根据不同的开发人员读取不同的配置文件

IntellJ IDEA2017 springboot2.0.2中读取配置

IntellJ IDEA 2017 激活编译器配置,读取多个配置文件