Android读取配置文件的方法

1、配置properties文件

先创建properties文件,存放在安卓工程文件的assets文件夹下

Android读取配置文件的方法_第1张图片

创建后的文件目录结构如下

Android读取配置文件的方法_第2张图片

文件内容按照“参数=值”的键值对形式组织

Android读取配置文件的方法_第3张图片

2、配置文件的读取

以下是读取config.properties配置文件的例子:

// 读取参数配置

Properties props = new Properties();

try {

props.load(getApplicationContext().getAssets().open("config.properties"));

} catch (IOException e) {

//e.printStackTrace();

AlertDialog.Builder dialog = new AlertDialog.Builder(this);

dialog.setTitle("错误");

dialog.setMessage("读取配置文件失败");

dialog.setCancelable(false);

dialog.setPositiveButton("OK", new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialogInterface, int i) {

LoginActivity.super.sysExit();

}

});

dialog.show();

}

ws_namespace = props.getProperty("ws_namespace");

ws_url = props.getProperty("ws_url");

ws_method = props.getProperty("ws_method_login");

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/28974745/viewspace-2654032/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/28974745/viewspace-2654032/

你可能感兴趣的:(Android读取配置文件的方法)