Android讀取配置檔案的方法
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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python讀取yaml配置檔案的方法PythonYAML
- go配置檔案讀取Go
- springboot讀取配置檔案Spring Boot
- viper 讀取配置檔案
- IOC - 讀取配置檔案
- java中讀取配置檔案Java
- go 讀取.ini配置檔案Go
- Golang專案中讀取配置檔案Golang
- C#讀取Json配置檔案C#JSON
- shell讀取配置檔案-sed命令
- python怎麼讀取配置檔案Python
- Go 專案配置檔案的定義和讀取Go
- 透過python讀取ini配置檔案Python
- .net core 靈活讀取配置檔案
- C#讀取指定json配置檔案C#JSON
- .NET Core 6.0之讀取配置檔案
- SpringBoot配置檔案讀取過程分析Spring Boot
- 如何在python中讀取配置檔案Python
- 用 PHP 讀取檔案的正確方法PHP
- python讀取大檔案的幾種方法Python
- Spring Boot讀取配置檔案的幾種方式Spring Boot
- EXE檔案結構及讀取方法
- python檔案讀取 readlines()方法之坑Python
- python讀取檔案指定行的三種方法Python
- Python逐行讀取檔案常用的三種方法!Python
- 配置檔案讀取——MySQL 多個連線MySql
- Java使用commons-configuration讀取配置檔案Java
- Java讀取properties配置檔案工具包Java
- 【springboot讀取配置檔案】@ConfigurationProperties、@PropertySource和@ValueSpring Boot
- Spingboot 讀取 yml 配置檔案裡的引數值boot
- Python實用方法之讀取本地檔案Python
- python程式碼讀取遠端檔案的方法--paramikoPython
- Asp .Net Core 讀取appsettings.json配置檔案APPJSON
- Java動態指令碼Groovy讀取配置檔案Java指令碼
- .NET Core基礎篇之:配置檔案讀取
- springboot 執行 jar 包讀取外部配置檔案Spring BootJAR
- ASP.Net Core 5.0 MVC AppSettings配置檔案讀取,Startup 類中ConfigureServices 方法、Configure 方法的使用ASP.NETMVCAPP
- WebAPI專案框架新建讀取配置檔案幫助類WebAPI框架