Android中SharedPreferences函數具體解釋

來源:互聯網
上載者:User

標籤:

Android平台提供了一個 SharedPreferences類,它是一個輕量級應用程式內部輕量級的儲存方案,特別適合用於儲存軟體配置參數,比方boolean,int,float,long,String等資料.使用SharedPreferences儲存資料,事實上質是採用了xml檔案存放資料,路徑為:/data/data/<package name>/shared_prefs.擷取SharedPreferences的兩種方式:
(1)調用Context對象的getSharedPreferences();(2)調用Activity對象的getPreferences();
兩種方式的差別:調用Context對象的getSharedPreferences()方法獲得的SharedPreferences對象能夠被同一應用程式下的其它組件共用。

調用Activity對象的getPreferences()方法獲得的SharedPreferences對象僅僅能在該Activity中使用。
(3)SharedPreferences()屬性,當中包括四種模式。
 3.1、Context.MODE_PRIVATE :預設操作方式,代表檔案是私人檔案,僅僅能被應用本身訪問。在該模式下寫入檔案會覆蓋原檔案內容
 3.2、Context.MODE_APPEND :該模式會檢查檔案是否存在,存在就往檔案追加內容,否則就建立新檔案。
 3.3、Context.MODE_WORLD_READABLE :表示當前檔案能夠被其它應用讀取。
 3.4、Context.MODE_WORLD_WRITEABLE :表示當前檔案能夠被其它應用寫入。

(4)將資料儲存至SharedPreferences

SharedPreferences preferences=getSharedPreferences("user",Context.MODE_PRIVATE);Editor editor=preferences.edit();String name="xixi";String age="22";editor.putString("name", name);editor.putString("age", age);editor.commit();

(5)從SharedPreferences擷取資料
SharedPreferences preferences=getSharedPreferences("user", Context.MODE_PRIVATE);String name=preferences.getString("name", "defaultname");String age=preferences.getString("age", "0");














Android中SharedPreferences函數具體解釋

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.