如何创建属性文件android

时间:2014-03-13 09:43:03

标签: android app-config config-files

我想在Android应用程序上创建配置文件,我知道 对于Xcode我们使用plist,Dot net使用app.config但是对于android我 没有想法创建文件。

谢谢

2 个答案:

答案 0 :(得分:3)

使用SharedPreferences可以说好先生。

答案 1 :(得分:2)

对于Android应用程序我找到了创建app.properties文件的方法,在app.properties创建之后,很容易从.properties文件中获取数据。示例如下:

public void CreatePropertiesFile(Context context)
{
Properties prop = new Properties();
String propertiesPath = context.getFilesDir().getPath().toString() + "/app.properties";
try {
FileOutputStream out = new FileOutputStream(propertiesPath);
       prop.setProperty("HomeVersion", "0");
prop.setProperty("DatePlaySquare", "0");
prop.setProperty("CustomerID", "0");
prop.setProperty("DeviceToken", "0");
prop.setProperty("CurrentVersionMobile", "0");
prop.setProperty("Domain", "Megazy");
prop.setProperty("DownloadNewVersion","0");
       prop.store(out, null);
       out.close();
} catch (IOException e) {
   System.err.println("Failed to open app.properties file");
   e.printStackTrace();
}

Aey.Sakon