1.sharedpreferences類將資料儲存在乙個xml檔案中,檔案存放在/data/data//shared_prefs目錄下
// //建立異或獲取乙個已經存在的sharedpreferences物件
sharedpreferences sharedpreferences = getsharedpreferences("mysp", context.mode_private);
2. 新增或編輯值
editor editor = sharedpreferences.edit();
editor.putstring("username", "ccc");
editor.putstring("password", "ddd");
editor.commit();
3. 讀取值,第二個引數為預設值,如果取不到,則返回這個預設值
string username = sharedpreferences.getstring("username", "");
string password = sharedpreferences.getstring("password", "");
4. 刪除值
editor editor = sharedpreferences.edit();
editor.remove("password");
editor.commit();
安卓儲存本地檔案
一 sharedpreferences 通過本方式儲存的檔案會儲存在檔案管理器data data 包名 shared prefs下的xml檔案中 存入資料 sharedpreferences sp getsharedpreferences user context.mode private edit...
Web 本地儲存和Vue本地儲存例項
資料的設定和讀取比較方便。容量較大,sessionstorage大約為5mb,localstorage大約為20mb。只能儲存字串,若想要儲存json物件,則可以使用window.json.stringify 或者parse 進行序列化和反序列化編碼 sessionstorage的儲存週期只有一次會...
android 本地儲存
android的本地儲存分為以下幾種 來自官方 shared preferences 儲存鍵值對 internal storage 私有資料到記憶體 external storage 公共資料 外部儲存 sqlite databases 資料庫儲存 network connection 網路儲存 s...