プロジェクトで .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 必要なインポートを追加
お役に立てれば :)