Android项目中的配置属性文件

时间:2016-01-29 01:59:23

标签: java android android-resources

在哪里可以将配置文件放在Android项目中?目前我在res目录中创建了一个目录: 的 RES /配置/ configuration.properties

and want to access it as :
properties = new Properties();
properties.load(getClass().getResourceAsStream("config/configuration.properties"));

它不起作用:输入流为空

2 个答案:

答案 0 :(得分:2)

您可以将其作为 assets / configuration.properties

放在资产目录中

示例代码

try {
    InputStream is = context.getAssets().open("configuration.properties");
    Properties props = new Properties();
    props.load(is);

    String value = props.getProperty("key", "");

    is.close();
} catch (Exception e) {
}

答案 1 :(得分:0)

Folder structure android config file

Properties properties = new Properties();
AssetManager assetManager = context.getAssets();
InputStream inputStream = assetManager.open("config.properties");
properties.load(inputStream);
properties.getProperty(key);