很抱歉问这样一个基本问题,但我没有找到这些信息。我想从 Android 项目属性文件(project.properties 或 local.properties)中读取设置,但我没有运气。System.getProperty 好像没什么用,总是返回null。
问问题
2267 次
1 回答
2
1 在您的 android 项目的 assets 文件夹中创建一个名为 subtype.properties 的文件
2 编辑键值文件 -
key=value
url=www.xyz.com
.....
现在在您的活动中调用它 -
Properties prop = new Properties();
try {
prop = loadPropties();
} catch (IOException e) {
Log.e(TAG, "Exception", e);
}
Log.d(TAG,"The value in prop file is " + prop.getProperty("key"));
//Write this function in your activity -
private Properties loadPropties() throws IOException {
String[] fileList = { "subtype.properties" };
Properties prop = new Properties();
for (int i = fileList.length - 1; i >= 0; i--) {
String file = fileList[i];
try {
InputStream fileStream = getAssets().open(file);
prop.load(fileStream);
fileStream.close();
} catch (FileNotFoundException e) {
Log.e(TAG , "Got exception " + e);
}
}
return prop;
}
于 2013-01-22T05:58:25.900 回答