在哪里可以将配置文件放在Android项目中?目前我在res目录中创建了一个目录: 的 RES /配置/ configuration.properties
and want to access it as :
properties = new Properties();
properties.load(getClass().getResourceAsStream("config/configuration.properties"));
它不起作用:输入流为空
答案 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)