Android讀取配置檔案的方法

llnnmc發表於2019-08-18

1、配置properties檔案

先建立properties檔案,存放在安卓工程檔案的assets資料夾下

建立後的檔案目錄結構如下

檔案內容按照“引數=值”的鍵值對形式組織

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/,如需轉載,請註明出處,否則將追究法律責任。

相關文章