1.檔案儲存,2.sd卡儲存(外部儲存),3.sp儲存(配置檔案儲存),4.資料庫儲存(儲存大量結構相似的資料,可以進行增刪改查),5.網路儲存(手機記憶體不足時存放在伺服器端的)。
sqlite資料庫的建立與增刪改查:
1.首先建立mydbopenhelper繼承sqliteopenhelper重寫它的構造方法
2.在mainactivity中建立mydbopenhelper物件,並通過mydbopenhelper建立資料庫。
3.執行sql語句建立資料庫表。
//1package cn.itcast.database.db;
import android.content.context;
import android.database.sqlite.sqlitedatabase;
import android.database.sqlite.sqlitedatabase.curso***ctory;
import android.database.sqlite.sqliteopenhelper;
import android.util.log;
public class mydbopenhelper extends sqliteopenhelper
@override
public void onupgrade(sqlitedatabase db, int oldversion, int newversion)
public mydbopenhelper(context context)
}dbopenhelper.getwritabledatabase();}}
android 資料儲存幾個方式
引用 android,資料儲存 3g數字內容學院沈大海 一,preferences preferences是乙個較輕量級的儲存資料的方法,具體使用方法 在a中儲存值 sharedpreferences.editor sharedata getsharedpreferences data 0 edit...
Android儲存資料方式(一) File
且有4種檔案操作mode 寫 fileoutputstream outstream context.openfileoutput filename,mode 得到檔案輸出流物件,上下文物件的openfileoutput返回檔案輸出流物件 outstream.write content.getbyte...
Android下的資料儲存方式
安卓系統預設提供了一下幾種資料儲存的方式 shared preferences 內部儲存 外部儲存 sqlite資料庫 儲存到網路伺服器 使用shared preferences shared preferences類主要用於儲存鍵值對的資料型別。我們可以使用它儲存一些簡單的資料型別。獲得share...