您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Android開發中如何實現數據存儲,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
在Android中,可以使用幾種方式實現數據持久化:
Shared Preferences:共享參數形式,一種以Key-Value的鍵值對形式保存數據的方式,Android內置的,一般應用的配置信息,推薦使用此種方式保存。
Internal Storage:使用Android設備自帶的內存存儲數據。
External Storage:使用外部存儲設備存儲數據,一般是指Sdcard。
SQLite Databases:以SQLite數據庫存儲結構化的數據。
SharedPreferences
也是一種輕型的數據存儲方式,它的本質是基于XML文件存儲key-value鍵值對數據,通常用來存儲一些簡單的配置信息。其存儲位置在/data/data/<包名>/shared_prefs目錄下。SharedPreferences對象本身只能獲取數據而不支持存儲和修改,存儲修改是通過Editor對象實現。實現SharedPreferences存儲的步驟如下:
一、根據Context獲取SharedPreferences對象
二、利用edit()方法獲取Editor對象。
三、通過Editor對象存儲key-value鍵值對數據。
四、通過commit()方法提交數據。
賦值:
putBoolean(KEY_SHOW_DIALOG_AT_START, false)
取值:
getBoolean(KEY_SHOW_DIALOG_AT_START,false);
SharedPreferences案例分析:
加進一檢查框
<CheckBox
android:id="@+id/cbSent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_below="@+id/textView1"
android:layout_marginTop="60dp"
android:text="測試語句"/>
定義三變量
private CheckBox cbSent;
private SharedPreferences sp;
privatestaticfinal String KEY_SHOW_DIALOG_AT_START = "showDialog";
onCreate中添加
sp = getSharedPreferences("mysp", Context.MODE_PRIVATE);
cb = (CheckBox) findViewById(R.id.cb);
cb.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
publicvoid onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
Editor e = sp.edit();
e.putBoolean(KEY_SHOW_DIALOG_AT_START, isChecked);
e.commit();
}
});
cb.setChecked(sp.getBoolean(KEY_SHOW_DIALOG_AT_START, false));
if (cb.isChecked()) {
new AlertDialog.Builder(this).setTitle("標題").setMessage("顯示語句么?").setPositiveButton("關閉", null).show();
}
內部存儲
Internal Storage
內部存儲,在Android中,開發者可以直接使用設備的內部存儲器中保存文件,默認情況下,以這種方式保存的和數據是只能被當前程序訪問,在其他程序中是無法訪問到的,而當用戶卸載該程序的時候,這些文件也會隨之被刪除。
使用內部存儲保存數據的方式,基本上也是先獲得一個文件的輸出流,然后以write()的方式把待寫入的信息寫入到這個輸出流中,最后關閉流即可,這些都是Java中IO流的操作。具體步驟如下:
使用Context.openFileOutput()方法獲取到一個FileOutputStream對象。
把待寫入的內容通過write()方法寫入到FileOutputStream對象中。
最后使用close()關閉流。
上面介紹的Context.openFileOutput()方法有兩個重載函數,它們的簽名分別是:
FileOutputStream openFileOutput(Stringname):以MODE_PRIVATE的模式打開name文件。
FileOutputStream openFileOutput(Stringname,int mode):以mode的模式打開name文件。
上面第二個重載函數中,mode為一個int類型的數據,這個一般使用Context對象中設置好的常量參數,有如下幾個:
MODE_APPEND:以追加的方式打開一個文件,使用此模式寫入的內容均追加在原本內容的后面。
MODE_PRIVATE:私有模式(默認),如果文件已經存在會重新創建并替換原文件,如果不存在直接創建。
MODE_WORLD_READABLE:以只讀的方式打開文件。
MODE_WORLD_WRITEABLE:以只寫的方式打開文件。
還有幾個方法需要特別注意一下,這幾個方法對于文件關系提供了更好的支持,配合上面介紹的方式,就可以對文件的數據進行常規的CRUD操作(增刪改查),方法如下:
File getFIlesDir():獲取文件系統的絕對路徑。
boolean deleteFile(String name):刪除一個指定文件名為name的文件。
String[] fileList():當前應用內部存儲路徑下的所有文件名。
Internal Storage案例分析:
1)加進編輯和命令按鈕
<EditText
android:gravity="top"
android:id="@+id/et"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<Button
android:id="@+id/btnSave"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="保存" />
2)讀取數據
privatevoid readSavedText(){
try {
InputStream is = openFileInput("data");
byte[] bytes = newbyte[is.available()];
is.read(bytes);
is.close();
String str = new String(bytes,"utf-8");
et.setText(str);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
3保存數據
privatevoid saveCurrentText(){
try {
OutputStream os = openFileOutput("data", Context.MODE_PRIVATE);
os.write(et.getText().toString().getBytes("utf-8"));
os.flush();
os.close();
Toast.makeText(this, "保存成功", Toast.LENGTH_SHORT).show();
return;
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
Toast.makeText(this, "保存失敗", Toast.LENGTH_SHORT).show();
}
4)開始讀取數據和定義保存
et = (EditText) findViewById(R.id.et);
btnSave = (Button) findViewById(R.id.btnSave);
readSavedText();
btnSave.setOnClickListener(new View.OnClickListener() {
@Override
publicvoid onClick(View v) {
saveCurrentText();
}
});
關于“Android開發中如何實現數據存儲”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。