android儲存資料的形式主要有四種:
1、sharedpreference,是乙個系統定義好的xml檔案
2、檔案系統
3、sqlite
4、網路儲存
這裡是sharedpreference
寫入:
//1、建立新的sharedpreference
sharedpreferences sharedpreferences = getsharedpreferences("user", context.mode_private);
//2、呼叫edit方法,回去可以操作的editor物件
sharedpreferences.editor editor = sharedpreferences.edit();
//寫入資料
editor.putstring("name", "asd");
editor.putboolean("issingle", true);
editor.putint("age", 25);
editor.putlong("money", 123456789);
boolean b = editor.commit();
if (b) else
讀取:
public
void
getdate()
SharedPreference物件的獲得
此乃本人的學習筆記 我只是將csdn部落格做為乙個記錄學習的地方 so.三種獲得sharedpreferences物件的方法 一 context類中的getsharedpreferences 方法 此方法中有兩個引數,第乙個引數為檔名,第二個引數為操作模式。操作模式有mode private和mod...
SharedPreference 的簡單用法
一般使用sharedpreference來儲存應用程式的配置資訊。它一般儲存在應用程式的私有儲存區,檔案許可權是私有的。也就是說只能供寫入者讀取。它使用鍵 值 nvp機制 來儲存資料。支援的資料型別 boolean int float long和string 它儲存在應用程式的私有目錄下 data ...
Spring Integration基本用法
關於spring integration的介紹這裡不需要贅述,現在我們需要實現的是傳送乙個param,裡面有兩個引數datatype和data,datatype是0和1除外的捨棄,剩餘datatype 0的資料往oldchannel通道發,剩餘datatype 1的資料往newchannel通道發,...