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實例codename:是指文件名稱,不須要加後綴.xml,系統會自動爲咱們添加上。通常這個文件存儲在
/data/data/<package name>/shared_prefs
下xmlmode:是指定讀寫方式,其值有四種。分別爲對象
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); } }; }
<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 preferences=getPreferences(「test」,MODE_PRIVATE);
二、 如何編輯SharedPreferences獲得Editor對象實例
SharedPreferences.Editor editor=preferences.editor();
三、 SharedPreferences的存儲位置
/data/data/<package name>/shared_prefs