string prefs_name = "lmn.com";
string itemuser = "username";
string itempass = "password";
string itemcheck = "check";
一 儲存
sharedpreferences settings = getsharedpreferences(prefs_name, 0);
sharedpreferences.editor editor = settings.edit();
editor.putboolean(itemcheck, checkbox.ischecked());
editor.putstring(itemuser, username);
editor.putstring(itempass, password);
editor.commit();
二 讀取
sharedpreferences settings = getsharedpreferences(prefs_name, 0);
boolean silent = settings.getboolean(itemcheck, false);
string username = settings.getstring(itemuser, "");
string password = settings.getstring(itempass, "");
android 本地儲存
android的本地儲存分為以下幾種 來自官方 shared preferences 儲存鍵值對 internal storage 私有資料到記憶體 external storage 公共資料 外部儲存 sqlite databases 資料庫儲存 network connection 網路儲存 s...
本地儲存資料
直接將資料寫在 裡,不是一種合理的做法,如果資料經常改,就要經常翻開對應的 進行修改,造成 擴充套件型低 因此,可以考慮將經常變的資料放在檔案中進行儲存,程式啟動後從檔案中讀取最新的資料,如果要變動資料,直接修改資料檔案即可,不用修改 一般可以使用屬性列表檔案儲存nsarray或者dictionar...
資料本地儲存方法
儲存到本地的資料型別有 陣列,字典,字串,物件型別的 1 字串的本地儲存 nsstring str dsadasd nsarray arr nssearchpathfordirectoriesindomains nslibrarydirectory,nsuserdomainmask,yes nsst...