这是您在项目中使用 .properties 文件的完整解决方案。
1 在您的 android 项目的 assets 文件夹中创建一个名为 app.properties 的文件
2编辑文件并写入您要使用的属性,例如
test=success
并保存文件
3 在您的活动类中编写此方法
private Properties loadPropties() throws IOException {
String[] fileList = { "app.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.d(TAG, "Ignoring missing property file " + file);
}
}
return prop;
}
4 在 OnCreate 方法中写一些这样的东西
Properties prop = null;
try {
prop = loadPropties();
} catch (IOException e) {
Log.e(TAG, "Exception", e);
}
Toast.makeText(getApplicationContext(), "Result " + prop.getProperty("test"),
Toast.LENGTH_LONG).show();
5 添加必要的导入
希望这可以帮助 :)