android 讀寫配置檔案
基本上我們所有的資料均放在 /data/data/com.***.***目錄下:
shared_prefs/ 放置簡單的配置資訊檔案,檔案格式為***.xml;
databases/ 放置資料庫檔案,檔名自己定義。
//sharedpreferences 檔案讀寫
//讀檔案
sharedpreferences settings = this.getcontext().getsharedpreferences(
this.getclass().getname(), 0);
string str = settings.getstring("password", "");
//寫檔案
sharedpreferences settings = this.getcontext().getsharedpreferences(
this.getclass().getname(), 0);
editor editor = settings.edit();
editor.putstring("password", password);
editor.commit();
//這裡的 this.getclass().getname()是獲得類名稱。
//getsharedpreferences(string name, int mode);
//private static string strfile = "/data/data/com.entesi.wells/files/wells.properties";
//讀檔案
properties properties = new properties();
try
else
} catch (exception e)
if ((string)properties.get("waittime")!=null)
this.nwaittime = integer.parseint((string)properties.get("waittime"));
//寫檔案
try
properties.setproperty("waittime", nwaittime+"");
properties.store(s, null);
} catch (exception e)
讀寫配置檔案
windows作業系統專門為此提供了6個api函式來對配置設定檔案進行讀 寫 getprivateprofileint 從私有初始化檔案獲取整型數值 getprivateprofilestring 從私有初始化檔案獲取字串型值 getprofileint 從win.ini 獲取整數值 getprof...
讀寫配置檔案
procedure curstepchanged curstep tsetupstep varsetupname string inipath string begin case curstep of ssinstall 複製檔案前 begin end sspostinstall 完成複製 begi...
讀寫配置檔案
寫配置檔案 include include include include using std cout using std endl int main int nlen strlen d myinifile.ini 16 nlen strlen lppath 0 strcpy s lppath,s...