码迷,mamicode.com
首页 > 其他好文 > 详细

Idea配置文件的读取

时间:2017-06-05 22:20:01      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:位置   ade   try   ring   color   grid   文件读取   tab   style   

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

配置文件位置:

技术分享

配置文件内容:

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配置文件的读取

标签:位置   ade   try   ring   color   grid   文件读取   tab   style   

原文地址:http://www.cnblogs.com/huangyichun/p/6947092.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!