Android存儲方式之SharedPreference

簡介

  • SharedPreferences是Android平臺上一個輕量級數據存儲方式,用來保存應用的一些經常使用配置,好比Activity狀態,Activity暫停時,將此activity的狀態保到SharedPereferences中;當Activity重載,系統回調方法 onSaveInstanceState時,再從SharedPreferences中將值取出。
  • SharedPreferences提供了java常規的Long、Int、String等類型數據的保存接口。
  • SharedPreferences相似過去Windows系統上的ini配置文件,可是它分爲多種權限,能夠全局共享訪問。
  • 提示最終是以xml方式來保存,總體效率來看不是特別的高,對於常規的輕量級而言比SQLite要好很多,若是真的存儲量不大能夠考慮本身定義文件格式。xml處理時Dalvik會經過自帶底層的本地XML Parser解析,好比XMLpull方式,這樣對於內存資源佔用比較好。

實現方式

  • SharedPreferences接口主要負責讀取應用程序的Preferences數據,它提供了以下經常使用方法來訪問SharedPreferences的key_value鍵值對
  • SharedPreferences經常使用的屬性和方法

    public abstract boolean contains (String key)java

    判斷SharedPreferences是否包含特定key的數據android

    public abstract SharedPreferences.Editor edit ()app

    返回一個Edit對象用於操做SharedPreferenceside

    public abstract Mapthis

操做模式

SharedPreferences是一個接口,那麼咱們怎麼樣來建立SharedPreferences例呢?能夠經過Context.getSharedPreferences(Stringname,intmode)來獲得一個SharedPreferences實例code

name:是指文件名稱,不須要加後綴.xml,系統會自動爲咱們添加上。通常這個文件存儲在/data/data/<package name>/shared_prefsxml

mode:是指定讀寫方式,其值有四種。分別爲對象

Context.MODE_PRIVATE
Context.MODE_APPEND
Context.MODE_WORLD_READABLE
Context.MODE_WORLD_WRITEABLE
ontext.MODE_PRIVATE:爲默認操做模式,表明該文件是私有數據,只能應用自己訪問,在該模式下,寫入的內容會覆蓋原文件的內容  

    Context.MODE_APPEND:模式會檢查文件是否存在,存在就往文件追加內容,不然就建立新文件.

    Context.MODE_WORLD_READABLE和Context.MODE_WORLD_WRITEABLE用來控制其餘應用是否有權限讀寫該文件.

    MODE_WORLD_READABLE:表示當前文件能夠被其餘應用讀取.

    MODE_WORLD_WRITEABLE:表示當前文件能夠被其餘應用寫入
    • *
    • *

用法

SharedPreferences 能夠用來進行數據的共享,包括應用程序之間,或者同一個應用程序中的不一樣組件。好比兩個activity除了經過Intent傳接口

遞數據以外,也能夠經過ShreadPreferences來共享數據。圖片

Editor sharedata = getSharedPreferences("data", 0).edit();
        sharedata.putString("item","hello getSharedPreferences");
        sharedata.commit();
SharedPreferences sharedata = getSharedPreferences("data", 0);
        String data = sharedata.getString("item", null);
        Log.v("cola","data="+data);

實例方法

MainActivity.java

import android.app.Activity;
        import android.content.SharedPreferences;
        import android.content.SharedPreferences.Editor;
        import android.os.Bundle;
        import android.view.View;
        import android.view.View.OnClickListener;
        import android.widget.Button;
        import android.widget.EditText;
        import android.widget.TextView;
        import android.widget.Toast;

        public class MainActivity extends Activity {
        private TextView tv_read;
        private EditText ed_wirte;
        private Button wirte, read;

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
            ed_wirte = (EditText) findViewById(R.id.ed_write);
            tv_read = (TextView) findViewById(R.id.tv_read);
            wirte = (Button) findViewById(R.id.write);
            read = (Button) findViewById(R.id.read);
            wirte.setOnClickListener(Write);
            read.setOnClickListener(Read);
        }

        OnClickListener Write = new OnClickListener() {
            @Override
            public void onClick(View v) {
                String name = ed_wirte.getText().toString();
                // 實例化SharedPreferences對象(第一步)
                SharedPreferences sharedPreferences = getSharedPreferences(
                        "sptest", MODE_PRIVATE);
                // 實例化SharedPreferences.Editor對象(第二步)
                Editor editor = sharedPreferences.edit();
                // 用putXX的方法保存數據
                editor.putString("name", name);
                // 提交當前數據
                editor.commit();
                // 使用toast信息提示框提示成功寫入數據
                Toast.makeText(MainActivity.this, "寫入成功", Toast.LENGTH_SHORT)
                        .show();
            }
        };
        OnClickListener Read = new OnClickListener() {
            @Override
            public void onClick(View v) {
                SharedPreferences sharedPreferences = getSharedPreferences(
                        "sptest", MODE_PRIVATE);
                String name = sharedPreferences.getString("name", "");
                read.setText(name);

             }
           };

        }
  • Activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <EditText
        android:id="@+id/ed_write"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

        <Button
        android:id="@+id/write"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="write" />

        <Button
        android:id="@+id/read"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="read" />

        <TextView
        android:id="@+id/tv_read"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

        </LinearLayout>
  • 圖片

    ![](http://i.imgur.com/LZ5bEt8.jpg)
  • 關於其餘程序訪問sharedpreference的問題
OtherSpTest.java

    import java.io.File;
    import java.io.FileInputStream;

    import android.content.Context;
    import android.content.SharedPreferences;
    import android.test.AndroidTestCase;
    import android.util.Log;

    public class OtherSpTest extends AndroidTestCase{
    private static final String TAG = "AccessSharePreferenceTest";

    /**
     * 訪問SharePreference的方式一,注:權限要足夠
     * @throws Exception
     */
    public void OtherSpTest() throws Exception{
        String path = "/data/data/com.vampire.sharedpreferences.activity/shared_prefs/ljq123.xml";
        File file = new File(path);
        FileInputStream inputStream = new FileInputStream(file);
        //獲取的是一個xml字符串
        String data = new FileService().read(inputStream);
        Log.i(TAG, data);
    }

    /**
     * 訪問SharePreference的方式二,注:權限要足夠
     * @throws Exception
     */
    public void OtherSpTest2() throws Exception{
        Context context = this.getContext().createPackageContext("com.vampire.sharedpreferences.activity", 
                Context.CONTEXT_IGNORE_SECURITY);
        SharedPreferences sharedPreferences = context.getSharedPreferences("ljq123", 
                Context.MODE_WORLD_READABLE+Context.MODE_WORLD_WRITEABLE);
        String name = sharedPreferences.getString("name", "");
        Log.i(TAG, name);
    }
    }

若是訪問其餘應用中的Preference,前提條件是:該preference建立時指定了Context.MODE_WORLD_READABLE或者Context.MODE_WORLD_WRITEABLE權限。

如:有個爲com.sp.MainActivity的應用使用下面語句建立了preference。

getSharedPreferences("sptest", Context.MODE_WORLD_READABLE);

其餘應用要訪問上面應用的preference,首先須要建立上面應用的Context,而後經過Context 訪問preference ,訪問preference時會在應用所在包下的shared_prefs目錄找到preference :

Context otherAppsContext = createPackageContext("com.sp.MainActivity", Context.CONTEXT_IGNORE_SECURITY);
SharedPreferences   sharedPreferences =otherAppsContext.getSharedPreferences("sptest", Context.MODE_WORLD_READABLE); 
String name = sharedPreferences.getString("name", "");

若是不經過建立Context訪問其餘應用的preference,也能夠以讀取xml文件方式直接訪問其餘應用preference對應的xml文件,如:

File xmlFile = new File("/data/data/<package name>/shared_prefs/itcast.xml");
//<package name>應替換成應用的包名

SharedPreferences的注意事項:

  • 編輯完SharedPreferences必定要記得調用Editor的commit()方法,不然不會將數據寫入到文件裏的。

回顧總結:

一、 如何獲得SharedPreferences

SharedPreferences preferences=getPreferences(「test」,MODE_PRIVATE);

二、 如何編輯SharedPreferences獲得Editor對象實例

SharedPreferences.Editor editor=preferences.editor();

三、 SharedPreferences的存儲位置

/data/data/<package name>/shared_prefs
相關文章
相關標籤/搜索